Log demotion

Demote a couple spammy messages to trace level.
This commit is contained in:
Jason Rhinelander 2022-10-14 20:37:19 -03:00
parent 0e576ff59e
commit bd869b3b07
2 changed files with 2 additions and 2 deletions

View File

@ -441,7 +441,7 @@ namespace llarp
Context::CleanupTX() Context::CleanupTX()
{ {
auto now = Now(); auto now = Now();
llarp::LogDebug("DHT tick"); llarp::LogTrace("DHT tick");
pendingRouterLookups().Expire(now); pendingRouterLookups().Expire(now);
_pendingIntrosetLookups.Expire(now); _pendingIntrosetLookups.Expire(now);

View File

@ -973,7 +973,7 @@ namespace llarp
// don't purge bootstrap nodes from nodedb // don't purge bootstrap nodes from nodedb
if (IsBootstrapNode(rc.pubkey)) if (IsBootstrapNode(rc.pubkey))
{ {
log::debug(logcat, "Not removing {}: is bootstrap node", rc.pubkey); log::trace(logcat, "Not removing {}: is bootstrap node", rc.pubkey);
return false; return false;
} }
// if for some reason we stored an RC that isn't a valid router // if for some reason we stored an RC that isn't a valid router