mirror of
https://github.com/transmission/transmission
synced 2024-12-23 00:04:06 +00:00
(trunk libT) demote the "Got N peers from tracker" and "Found N peers from DHT" messages from info to debug... there are just too many of them
This commit is contained in:
parent
7e28c375c9
commit
e03ad192c7
2 changed files with 2 additions and 2 deletions
|
@ -320,7 +320,7 @@ onTrackerResponse( void * tracker UNUSED,
|
|||
if( event->allAreSeeds )
|
||||
tr_tordbg( tor, "Got %d seeds from tracker", (int)n );
|
||||
else
|
||||
tr_torinf( tor, _( "Got %d peers from tracker" ), (int)n );
|
||||
tr_tordbg( tor, "Got %d peers from tracker", (int)n );
|
||||
|
||||
for( i = 0; i < n; ++i )
|
||||
{
|
||||
|
|
|
@ -615,7 +615,7 @@ callback( void *ignore UNUSED, int event,
|
|||
for( i=0; i<n; ++i )
|
||||
tr_peerMgrAddPex( tor, TR_PEER_FROM_DHT, pex+i );
|
||||
tr_free(pex);
|
||||
tr_torinf(tor, "Learned %d%s peers from DHT",
|
||||
tr_tordbg(tor, "Learned %d%s peers from DHT",
|
||||
(int)n,
|
||||
event == DHT_EVENT_VALUES6 ? " IPv6" : "");
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue