From e1b0bf5e8c76c6d3a4cac2ffc93cd3bc6c8414d3 Mon Sep 17 00:00:00 2001 From: Matthias Wachs Date: Wed, 30 Oct 2013 09:56:30 +0000 Subject: [PATCH] improved message --- src/ats/libgnunet_plugin_ats_proportional.c | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/src/ats/libgnunet_plugin_ats_proportional.c b/src/ats/libgnunet_plugin_ats_proportional.c index 8ae4d3617..0c855a66f 100644 --- a/src/ats/libgnunet_plugin_ats_proportional.c +++ b/src/ats/libgnunet_plugin_ats_proportional.c @@ -1224,7 +1224,7 @@ GAS_proportional_address_delete (void *solver, struct ATS_Address *address, s->bw_changed (s->bw_changed_cls, (struct ATS_Address *) new_address); } } - LOG(GNUNET_ERROR_TYPE_DEBUG, + LOG(GNUNET_ERROR_TYPE_INFO, "After deleting address now total %u and active %u addresses in network `%s'\n", net->total_addresses, net->active_addresses, net->desc); @@ -1493,9 +1493,10 @@ GAS_proportional_address_add (void *solver, struct ATS_Address *address, s->bw_changed (s->bw_changed_cls, (struct ATS_Address *) address); } } - LOG(GNUNET_ERROR_TYPE_DEBUG, - "After adding address now total %u and active %u addresses in network `%s'\n", - net->total_addresses, net->active_addresses, net->desc); + + LOG(GNUNET_ERROR_TYPE_INFO, + "Adding new address %p for peer `%s', now total %u and active %u addresses in network `%s'\n", + address, GNUNET_i2s(&address->peer), net->total_addresses, net->active_addresses, net->desc); } -- 2.25.1