Skip to content

Commit

Permalink
setting filter handling logs to trace (#2914)
Browse files Browse the repository at this point in the history
(cherry picked from commit 5c539fe)
  • Loading branch information
gabrielmer authored and Ivansete-status committed Jul 17, 2024
1 parent 706055d commit f2e1348
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions waku/waku_filter_v2/protocol.nim
Original file line number Diff line number Diff line change
Expand Up @@ -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()

Expand All @@ -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
Expand Down

0 comments on commit f2e1348

Please sign in to comment.