aboutsummaryrefslogtreecommitdiff
path: root/src/transport/gnunet-service-transport_neighbours.c
diff options
context:
space:
mode:
authorMatthias Wachs <wachs@net.in.tum.de>2014-05-19 14:39:41 +0000
committerMatthias Wachs <wachs@net.in.tum.de>2014-05-19 14:39:41 +0000
commit5dd4ccb857a2f1639bd9de918f1fcb8cb78b1b5a (patch)
tree66c44590939005405656949b8dd473d1ddda0532 /src/transport/gnunet-service-transport_neighbours.c
parent805842808d78b7c94d9b14139e79616c6249cab8 (diff)
downloadgnunet-5dd4ccb857a2f1639bd9de918f1fcb8cb78b1b5a.tar.gz
gnunet-5dd4ccb857a2f1639bd9de918f1fcb8cb78b1b5a.zip
remove debugging output
Diffstat (limited to 'src/transport/gnunet-service-transport_neighbours.c')
-rw-r--r--src/transport/gnunet-service-transport_neighbours.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/transport/gnunet-service-transport_neighbours.c b/src/transport/gnunet-service-transport_neighbours.c
index 7993bf2f4..16826e957 100644
--- 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,
1229 gettext_noop 1229 gettext_noop
1230 ("# transmission failures for messages to other peers"), 1230 ("# transmission failures for messages to other peers"),
1231 1, GNUNET_NO); 1231 1, GNUNET_NO);
1232 GNUNET_log (GNUNET_ERROR_TYPE_ERROR, 1232 GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
1233 "Sending message to `%s' of type %u with %u bytes was a %s\n", 1233 "Sending message to `%s' of type %u with %u bytes was a %s\n",
1234 GNUNET_i2s (receiver), 1234 GNUNET_i2s (receiver),
1235 ntohs (((struct GNUNET_MessageHeader *) mq->message_buf)->type), 1235 ntohs (((struct GNUNET_MessageHeader *) mq->message_buf)->type),
@@ -1298,7 +1298,7 @@ try_transmission_to_peer (struct NeighbourMapEntry *n)
1298 GNUNET_CONTAINER_DLL_remove (n->messages_head, n->messages_tail, mq); 1298 GNUNET_CONTAINER_DLL_remove (n->messages_head, n->messages_tail, mq);
1299 n->is_active = mq; 1299 n->is_active = mq;
1300 1300
1301 GNUNET_log (GNUNET_ERROR_TYPE_ERROR, 1301 GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
1302 "Giving message with %u bytes to plugin session %p\n", 1302 "Giving message with %u bytes to plugin session %p\n",
1303 mq->message_buf_size, n->primary_address.session); 1303 mq->message_buf_size, n->primary_address.session);
1304 1304
@@ -1642,7 +1642,7 @@ GST_neighbours_send (const struct GNUNET_PeerIdentity *target, const void *msg,
1642 mq->message_buf_size = msg_size; 1642 mq->message_buf_size = msg_size;
1643 mq->timeout = GNUNET_TIME_relative_to_absolute (timeout); 1643 mq->timeout = GNUNET_TIME_relative_to_absolute (timeout);
1644 1644
1645 GNUNET_log (GNUNET_ERROR_TYPE_ERROR, "Enqueueing %u bytes to send to peer %s\n", 1645 GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Enqueueing %u bytes to send to peer %s\n",
1646 msg_size, GNUNET_i2s (target)); 1646 msg_size, GNUNET_i2s (target));
1647 1647
1648 GNUNET_CONTAINER_DLL_insert_tail (n->messages_head, n->messages_tail, mq); 1648 GNUNET_CONTAINER_DLL_insert_tail (n->messages_head, n->messages_tail, mq);