Skip to content

Commit 609bf48

Browse files
committed
quiet logging of No SyncRequest found messages durign state sync
1 parent f01c656 commit 609bf48

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

trinity/utils/logging.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -97,8 +97,7 @@ def setup_queue_logging(log_queue: 'Queue[str]', level: int) -> None:
9797
# the INFO level for it until https://github.com/ethereum/py-evm/issues/806 is fixed.
9898
logging.getLogger('p2p.kademlia').setLevel(logging.INFO)
9999
logging.getLogger('p2p.discovery').setLevel(logging.INFO)
100-
logging.getLogger('p2p.state.StateSync').setLevel(logging.INFO)
101-
logging.getLogger('trie').setLevel(logging.ERROR)
100+
logging.getLogger('p2p.state.StateSync').setLevel(logging.ERROR)
102101
logger.debug('Logging initialized: PID=%s', os.getpid())
103102

104103

0 commit comments

Comments
 (0)