From 76dce0c8a6b5eb107545d5c5984f7ebac17aabb7 Mon Sep 17 00:00:00 2001 From: Jonathan Rainville Date: Wed, 4 Jan 2023 14:44:12 -0500 Subject: [PATCH] chore: improve the filters did not match log --- wakuv2/waku.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wakuv2/waku.go b/wakuv2/waku.go index 5b5085554..d2235488d 100644 --- a/wakuv2/waku.go +++ b/wakuv2/waku.go @@ -1222,7 +1222,7 @@ func (w *Waku) processQueue() { // If not matched we remove it if !matched { - w.logger.Debug("filters did not match", zap.String("hash", e.Hash().String())) + w.logger.Debug("filters did not match", zap.String("hash", e.Hash().String()), zap.String("contentTopic", e.Topic.ContentTopic())) w.storeMsgIDsMu.Lock() delete(w.storeMsgIDs, e.Hash()) w.storeMsgIDsMu.Unlock()