chore: lower per-message log level to trace (#1561)

This commit is contained in:
Hanno Cornelius 2023-02-14 15:07:26 +02:00 committed by GitHub
parent 9258914057
commit 740e4f2bd6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -53,7 +53,7 @@ proc addMessage*[K](t: MessageCache, topic: K, msg: WakuMessage) =
var messages = t.table.getOrDefault(topic, @[])
if messages.len >= t.capacity.int:
debug "Topic cache capacity reached", topic=topic
trace "Topic cache capacity reached", topic=topic
# Message cache on this topic exceeds maximum. Delete oldest.
# TODO: this may become a bottle neck if called as the norm rather than
# exception when adding messages. Performance profile needed.