From: Matthias Wachs Date: Wed, 30 Oct 2013 09:56:30 +0000 (+0000) Subject: improved message X-Git-Tag: initial-import-from-subversion-38251~6309 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=e1b0bf5e8c76c6d3a4cac2ffc93cd3bc6c8414d3;p=oweals%2Fgnunet.git improved message --- 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); }