Maintain consistent output with GC tracing

This commit is contained in:
Justin Ethier 2020-02-06 10:00:05 -05:00
parent 2878138fd7
commit ff93af02e7

View file

@ -119,7 +119,7 @@ void hrt_log_delta(const char *label, long long tstamp)
}
long long total = hrt_cmp_current(initial_tstamp);
long long delta = hrt_cmp_current(tstamp);
fprintf(stdout, "%s, %llu, %llu\n", label, total, delta);
fprintf(stderr, "%s, %llu, %llu\n", label, total, delta);
}
/* END High resolution timers */