gnunet

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

commit 5dd4ccb857a2f1639bd9de918f1fcb8cb78b1b5a
parent 805842808d78b7c94d9b14139e79616c6249cab8
Author: Matthias Wachs <wachs@net.in.tum.de>
Date:   Mon, 19 May 2014 14:39:41 +0000

remove debugging output


Diffstat:
Msrc/transport/gnunet-service-transport_neighbours.c | 6+++---
1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/src/transport/gnunet-service-transport_neighbours.c b/src/transport/gnunet-service-transport_neighbours.c @@ -1229,7 +1229,7 @@ transmit_send_continuation (void *cls, gettext_noop ("# transmission failures for messages to other peers"), 1, GNUNET_NO); - GNUNET_log (GNUNET_ERROR_TYPE_ERROR, + GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Sending message to `%s' of type %u with %u bytes was a %s\n", GNUNET_i2s (receiver), ntohs (((struct GNUNET_MessageHeader *) mq->message_buf)->type), @@ -1298,7 +1298,7 @@ try_transmission_to_peer (struct NeighbourMapEntry *n) GNUNET_CONTAINER_DLL_remove (n->messages_head, n->messages_tail, mq); n->is_active = mq; - GNUNET_log (GNUNET_ERROR_TYPE_ERROR, + GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Giving message with %u bytes to plugin session %p\n", mq->message_buf_size, n->primary_address.session); @@ -1642,7 +1642,7 @@ GST_neighbours_send (const struct GNUNET_PeerIdentity *target, const void *msg, mq->message_buf_size = msg_size; mq->timeout = GNUNET_TIME_relative_to_absolute (timeout); - GNUNET_log (GNUNET_ERROR_TYPE_ERROR, "Enqueueing %u bytes to send to peer %s\n", + GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Enqueueing %u bytes to send to peer %s\n", msg_size, GNUNET_i2s (target)); GNUNET_CONTAINER_DLL_insert_tail (n->messages_head, n->messages_tail, mq);