From: Christian Grothoff Date: Sun, 22 Jan 2017 10:34:56 +0000 (+0100) Subject: improve logging, log before doing, not after X-Git-Tag: taler-0.2.1~385 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=da1a4cb33f72de8fc735816653104ec3b369dcf3;p=oweals%2Fgnunet.git improve logging, log before doing, not after --- diff --git a/src/cadet/gnunet-service-cadet-new.c b/src/cadet/gnunet-service-cadet-new.c index ff143b4b3..b0d8fc32d 100644 --- a/src/cadet/gnunet-service-cadet-new.c +++ b/src/cadet/gnunet-service-cadet-new.c @@ -525,6 +525,11 @@ handle_channel_create (void *cls, GNUNET_SERVICE_client_drop (c->client); return; } + LOG (GNUNET_ERROR_TYPE_DEBUG, + "New channel to %s at port %s requested by client %s\n", + GNUNET_i2s (&tcm->peer), + GNUNET_h2s (&tcm->port), + GSC_2s (c)); /* Create channel */ ch = GCCH_channel_local_new (c, @@ -545,12 +550,6 @@ handle_channel_create (void *cls, ch, GNUNET_CONTAINER_MULTIHASHMAPOPTION_UNIQUE_ONLY)); - LOG (GNUNET_ERROR_TYPE_DEBUG, - "New channel %s to %s at port %s requested by client %s\n", - GCCH_2s (ch), - GNUNET_i2s (&tcm->peer), - GNUNET_h2s (&tcm->port), - GSC_2s (c)); GNUNET_SERVICE_client_continue (c->client); }