From b190f951bd622ce3848b9383bcfba99b77bff839 Mon Sep 17 00:00:00 2001 From: Matthias Wachs Date: Fri, 28 Oct 2011 11:52:39 +0000 Subject: [PATCH] --- src/transport/gnunet-service-transport_neighbours_3way.c | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/src/transport/gnunet-service-transport_neighbours_3way.c b/src/transport/gnunet-service-transport_neighbours_3way.c index b09812f61..cbddc6fd8 100644 --- a/src/transport/gnunet-service-transport_neighbours_3way.c +++ b/src/transport/gnunet-service-transport_neighbours_3way.c @@ -470,7 +470,7 @@ change (struct NeighbourMapEntry * n, int state, int line) } n->state = state; - GNUNET_log (GNUNET_ERROR_TYPE_ERROR, "State for neighbour `%s' %X changed from `%s' to `%s' in line %u\n", + GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "State for neighbour `%s' %X changed from `%s' to `%s' in line %u\n", GNUNET_i2s (&n->id), n, old, new, line); GNUNET_free (old); GNUNET_free (new); @@ -1211,7 +1211,7 @@ GST_neighbours_switch_to_address_3way (const struct GNUNET_PeerIdentity *peer, return GNUNET_NO; } - GNUNET_log (GNUNET_ERROR_TYPE_ERROR, "Invalid connection state to switch addresses %u ", n->state); + GNUNET_log (GNUNET_ERROR_TYPE_ERROR, "Invalid connection state to switch addresses %u \n", n->state); GNUNET_break_op (0); return GNUNET_NO; } @@ -1787,10 +1787,9 @@ GST_neighbours_handle_connect_ack (const struct GNUNET_MessageHeader *message, int was_connected; #if DEBUG_TRANSPORT -#endif - GNUNET_log (GNUNET_ERROR_TYPE_ERROR, + GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Received CONNECT_ACK message from peer `%s'\n", GNUNET_i2s (peer)); - +#endif if (ntohs (message->size) != sizeof (struct SessionConnectMessage)) { -- 2.25.1