gnunet-svn
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[GNUnet-SVN] r36297 - gnunet/src/cadet


From: gnunet
Subject: [GNUnet-SVN] r36297 - gnunet/src/cadet
Date: Thu, 3 Sep 2015 20:04:00 +0200

Author: bartpolot
Date: 2015-09-03 20:03:59 +0200 (Thu, 03 Sep 2015)
New Revision: 36297

Modified:
   gnunet/src/cadet/cadet_api.c
Log:
- log

Modified: gnunet/src/cadet/cadet_api.c
===================================================================
--- gnunet/src/cadet/cadet_api.c        2015-09-03 18:03:59 UTC (rev 36296)
+++ gnunet/src/cadet/cadet_api.c        2015-09-03 18:03:59 UTC (rev 36297)
@@ -811,8 +811,8 @@
   struct GNUNET_CADET_Channel *ch;
   CADET_ChannelNumber chid;
 
-  LOG (GNUNET_ERROR_TYPE_DEBUG, "Channel Destroy received from service\n");
   chid = ntohl (msg->channel_id);
+  LOG (GNUNET_ERROR_TYPE_DEBUG, "Channel %X Destroy from service\n", chid);
   ch = retrieve_channel (h, chid);
 
   if (NULL == ch)
@@ -820,7 +820,6 @@
     LOG (GNUNET_ERROR_TYPE_DEBUG, "channel %X unknown\n", chid);
     return;
   }
-  LOG (GNUNET_ERROR_TYPE_DEBUG, " destroying channel %X\n", ch->chid);
   destroy_channel (ch, GNUNET_YES);
 }
 




reply via email to

[Prev in Thread] Current Thread [Next in Thread]