mirror of
https://github.com/mapbox/tippecanoe.git
synced 2025-05-07 03:18:09 +00:00
9 lines
175 B
C++
9 lines
175 B
C++
#include <stdarg.h>
|
|
#include <fstream>
|
|
|
|
#include "json_logger.hpp"
|
|
|
|
void json_logger::progress_tile(double progress) {
|
|
fprintf(stderr, "{\"progress\":%3.1f}\n", progress);
|
|
}
|