mirror of https://github.com/waku-org/nwaku.git
setting filter handling logs to trace (#2914)
This commit is contained in:
parent
706055dc5e
commit
b9235995c9
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue