Skip to content

Commit

Permalink
setting filter handling logs to trace
Browse files Browse the repository at this point in the history
  • Loading branch information
gabrielmer committed Jul 17, 2024
1 parent 71ee42d commit 91d573d
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 @@ -222,7 +222,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 @@ -231,7 +231,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 91d573d

Please sign in to comment.