commit f9a86ba5dc017036cf927b40431073473c9c4245
parent 081ffe994a6d39cbd332eefe6f58f8015154e4cb
Author: Christian Grothoff <christian@grothoff.org>
Date: Wed, 4 Apr 2018 17:04:51 +0200
expand logging of wirewatch shutdown
Diffstat:
1 file changed, 6 insertions(+), 4 deletions(-)
diff --git a/src/exchange/taler-exchange-wirewatch.c b/src/exchange/taler-exchange-wirewatch.c
@@ -246,10 +246,10 @@ reject_cb (void *cls,
rt = NULL;
if (TALER_EC_NONE != ec)
{
- fprintf (stderr,
- "Failed to wire back transfer `%s': %d\n",
- rtc->wtid_s,
- ec);
+ GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
+ "Failed to wire back transfer `%s': %d\n",
+ rtc->wtid_s,
+ ec);
GNUNET_free (rtc->wtid_s);
db_plugin->rollback (db_plugin->cls,
rtc->session);
@@ -312,6 +312,8 @@ history_cb (void *cls,
if ( (GNUNET_YES == delay) &&
(test_mode) )
{
+ GNUNET_log (GNUNET_ERROR_TYPE_INFO,
+ "Shutdown due to test mode!\n");
GNUNET_SCHEDULER_shutdown ();
return GNUNET_OK;
}