tippecanoe/json_logger.cpp
2022-07-28 11:19:30 -07:00

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);
}