2
0
mirror of https://github.com/status-im/status-go.git synced 2025-01-11 23:25:29 +00:00

chore: improve the filters did not match log

This commit is contained in:
Jonathan Rainville 2023-01-04 14:44:12 -05:00
parent d40290a649
commit 76dce0c8a6

@ -1222,7 +1222,7 @@ func (w *Waku) processQueue() {
// If not matched we remove it // If not matched we remove it
if !matched { 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() w.storeMsgIDsMu.Lock()
delete(w.storeMsgIDs, e.Hash()) delete(w.storeMsgIDs, e.Hash())
w.storeMsgIDsMu.Unlock() w.storeMsgIDsMu.Unlock()