summaryrefslogtreecommitdiff
path: root/deps/uv/test/benchmark-spawn.c
diff options
context:
space:
mode:
Diffstat (limited to 'deps/uv/test/benchmark-spawn.c')
-rw-r--r--deps/uv/test/benchmark-spawn.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/deps/uv/test/benchmark-spawn.c b/deps/uv/test/benchmark-spawn.c
index 9cae41a83a..ed9ad608f3 100644
--- a/deps/uv/test/benchmark-spawn.c
+++ b/deps/uv/test/benchmark-spawn.c
@@ -155,8 +155,9 @@ BENCHMARK_IMPL(spawn) {
uv_update_time(loop);
end_time = uv_now(loop);
- LOGF("spawn: %.0f spawns/s\n",
- (double) N / (double) (end_time - start_time) * 1000.0);
+ fprintf(stderr, "spawn: %.0f spawns/s\n",
+ (double) N / (double) (end_time - start_time) * 1000.0);
+ fflush(stderr);
MAKE_VALGRIND_HAPPY();
return 0;