Skip to content

Commit 35d7e51

Browse files
gabrielmerIvansete-status
authored andcommitted
setting filter handling logs to trace (#2914)
1 parent eddd990 commit 35d7e51

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

waku/waku_filter_v2/protocol.nim

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -227,7 +227,7 @@ proc handleMessage*(
227227
) {.async.} =
228228
let msgHash = computeMessageHash(pubsubTopic, message).to0xHex()
229229

230-
notice "handling message", pubsubTopic = pubsubTopic, msg_hash = msgHash
230+
trace "handling message", pubsubTopic = pubsubTopic, msg_hash = msgHash
231231

232232
let handleMessageStartTime = Moment.now()
233233

@@ -236,7 +236,7 @@ proc handleMessage*(
236236
let subscribedPeers =
237237
wf.subscriptions.findSubscribedPeers(pubsubTopic, message.contentTopic)
238238
if subscribedPeers.len == 0:
239-
notice "no subscribed peers found",
239+
trace "no subscribed peers found",
240240
pubsubTopic = pubsubTopic,
241241
contentTopic = message.contentTopic,
242242
msg_hash = msgHash

0 commit comments

Comments
 (0)