From b9235995c9c43993493437bbcc8db700340896d7 Mon Sep 17 00:00:00 2001 From: gabrielmer <101006718+gabrielmer@users.noreply.github.com> Date: Wed, 17 Jul 2024 13:29:53 +0300 Subject: [PATCH] setting filter handling logs to trace (#2914) --- waku/waku_filter_v2/protocol.nim | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/waku/waku_filter_v2/protocol.nim b/waku/waku_filter_v2/protocol.nim index 588ae7809..4c39a70a7 100644 --- a/waku/waku_filter_v2/protocol.nim +++ b/waku/waku_filter_v2/protocol.nim @@ -227,7 +227,7 @@ proc handleMessage*( ) {.async.} = let msgHash = computeMessageHash(pubsubTopic, message).to0xHex() - notice "handling message", pubsubTopic = pubsubTopic, msg_hash = msgHash + trace "handling message", pubsubTopic = pubsubTopic, msg_hash = msgHash let handleMessageStartTime = Moment.now() @@ -236,7 +236,7 @@ proc handleMessage*( let subscribedPeers = wf.subscriptions.findSubscribedPeers(pubsubTopic, message.contentTopic) if subscribedPeers.len == 0: - notice "no subscribed peers found", + trace "no subscribed peers found", pubsubTopic = pubsubTopic, contentTopic = message.contentTopic, msg_hash = msgHash