From: Julius Bünger Date: Fri, 16 Sep 2016 23:47:58 +0000 (+0000) Subject: -rps _peers: logging X-Git-Tag: initial-import-from-subversion-38251~262 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=271b944f00a551d9b9ebb7a57197c22d1d33ff56;p=oweals%2Fgnunet.git -rps _peers: logging --- diff --git a/src/rps/gnunet-service-rps_peers.c b/src/rps/gnunet-service-rps_peers.c index 38e411072..d2a995c1d 100644 --- a/src/rps/gnunet-service-rps_peers.c +++ b/src/rps/gnunet-service-rps_peers.c @@ -1153,11 +1153,15 @@ Peers_remove_peer (const struct GNUNET_PeerIdentity *peer) } if (NULL != peer_ctx->send_channel) { + LOG (GNUNET_ERROR_TYPE_DEBUG, + "Destroying send channel\n"); GNUNET_CADET_channel_destroy (peer_ctx->send_channel); peer_ctx->send_channel = NULL; } if (NULL != peer_ctx->recv_channel) { + LOG (GNUNET_ERROR_TYPE_DEBUG, + "Destroying recv channel\n"); GNUNET_CADET_channel_destroy (peer_ctx->recv_channel); peer_ctx->recv_channel = NULL; }