diff options
author | Christian Grothoff <christian@grothoff.org> | 2018-08-09 10:15:04 +0200 |
---|---|---|
committer | Christian Grothoff <christian@grothoff.org> | 2018-08-09 10:15:04 +0200 |
commit | 4693708b8c53471f7bc5e956dff8158615c46deb (patch) | |
tree | d375c1b1ecc7dd51f8bfa2edd425c8e5af595154 /src/benchmark/taler-exchange-benchmark.c | |
parent | 3197125dbe884a0844087ebc95cbbcafba1c598a (diff) |
use fprintf / stdout for final benchmark result
Diffstat (limited to 'src/benchmark/taler-exchange-benchmark.c')
-rw-r--r-- | src/benchmark/taler-exchange-benchmark.c | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/src/benchmark/taler-exchange-benchmark.c b/src/benchmark/taler-exchange-benchmark.c index a7b2e282f..5039a96f5 100644 --- a/src/benchmark/taler-exchange-benchmark.c +++ b/src/benchmark/taler-exchange-benchmark.c @@ -645,13 +645,13 @@ main (int argc, GNUNET_free (exchange_url); duration = GNUNET_TIME_absolute_get_duration (start_time); - TALER_LOG_INFO ("Executed W=%u, D=%u, R=%u, operations in %s\n", - howmany_coins, - howmany_coins, - howmany_refreshes, - GNUNET_STRINGS_relative_time_to_string - (duration, - GNUNET_NO)); - + fprintf (stdout, + "Executed W=%u, D=%u, R=%u, operations in %s\n", + howmany_coins, + howmany_coins, + howmany_refreshes, + GNUNET_STRINGS_relative_time_to_string + (duration, + GNUNET_NO)); return (GNUNET_OK == result) ? 0 : result; } |