From ff93af02e79d9bd6e7f3167d5c01ea939fde7ef1 Mon Sep 17 00:00:00 2001 From: Justin Ethier Date: Thu, 6 Feb 2020 10:00:05 -0500 Subject: [PATCH] Maintain consistent output with GC tracing --- runtime.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/runtime.c b/runtime.c index 966526d7..43875725 100644 --- a/runtime.c +++ b/runtime.c @@ -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 */