gnunet

Main GNUnet Logic
Log | Files | Refs | Submodules | README | LICENSE

commit 271b944f00a551d9b9ebb7a57197c22d1d33ff56
parent 41d86bb83f91ba3dcdd65591ccd617332a484247
Author: Julius Bünger <buenger@mytum.de>
Date:   Fri, 16 Sep 2016 23:47:58 +0000

-rps _peers: logging

Diffstat:
Msrc/rps/gnunet-service-rps_peers.c | 4++++
1 file changed, 4 insertions(+), 0 deletions(-)

diff --git 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; }