mirror of https://github.com/waku-org/nwaku.git
setting filter handling logs to trace (#2914)
This commit is contained in:
parent
ba418ab5ba
commit
5c539fe13d
|
@ -227,7 +227,7 @@ proc handleMessage*(
|
||||||
) {.async.} =
|
) {.async.} =
|
||||||
let msgHash = computeMessageHash(pubsubTopic, message).to0xHex()
|
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()
|
let handleMessageStartTime = Moment.now()
|
||||||
|
|
||||||
|
@ -236,7 +236,7 @@ proc handleMessage*(
|
||||||
let subscribedPeers =
|
let subscribedPeers =
|
||||||
wf.subscriptions.findSubscribedPeers(pubsubTopic, message.contentTopic)
|
wf.subscriptions.findSubscribedPeers(pubsubTopic, message.contentTopic)
|
||||||
if subscribedPeers.len == 0:
|
if subscribedPeers.len == 0:
|
||||||
notice "no subscribed peers found",
|
trace "no subscribed peers found",
|
||||||
pubsubTopic = pubsubTopic,
|
pubsubTopic = pubsubTopic,
|
||||||
contentTopic = message.contentTopic,
|
contentTopic = message.contentTopic,
|
||||||
msg_hash = msgHash
|
msg_hash = msgHash
|
||||||
|
|
Loading…
Reference in New Issue