Reduce various log levels to DEBUG (#5477)

This commit is contained in:
Chris Stewart 2024-03-17 07:59:53 -05:00 committed by GitHub
parent 270f3cf624
commit db64a6d136
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
3 changed files with 3 additions and 3 deletions

View File

@ -201,7 +201,7 @@ case class NeutrinoNode(
private def healthChecksRunnable(): Runnable = { () =>
val peers = peerManager.peers
logger.info(s"Running health checks for peers=${peers}")
logger.debug(s"Running health checks for peers=${peers}")
val resultF = if (peers.nonEmpty || isStarted.get) {
queueOpt match {
case Some(q) =>

View File

@ -309,7 +309,7 @@ case class PeerFinder(
if (
isConnectionSchedulerRunning.compareAndSet(false, true) && isStarted.get()
) {
logger.info(
logger.debug(
s"Attempting to find more peers to connect to... stack.size=${_peersToTry.size}")
val dnsPeersF = if (_peersToTry.size < maxPeerSearchCount) {
val pdsF = getPeersFromDnsSeeds

View File

@ -1186,7 +1186,7 @@ object PeerManager extends Logging {
startHeightOpt = startHeightOpt)
res <- filterSyncMarkerOpt match {
case Some(filterSyncMarker) =>
logger.info(
logger.debug(
s"Requesting compact filters from with peer=$peer stopBlockHashBE=${filterSyncMarker.stopBlockHashBE.hex}")
peerMessageSenderApi
.sendGetCompactFiltersMessage(filterSyncMarker)