File: json_logger.cpp

package info (click to toggle)
tippecanoe 2.53.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 148,236 kB
  • sloc: cpp: 44,069; ansic: 2,057; makefile: 454; perl: 129; python: 62; sh: 4
file content (8 lines) | stat: -rw-r--r-- 175 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
#include <stdarg.h>
#include <fstream>

#include "json_logger.hpp"

void json_logger::progress_tile(double progress) {
	fprintf(stderr, "{\"progress\":%3.1f}\n", progress);
}