Skip to content

Commit

Permalink
Fix record key generation.
Browse files Browse the repository at this point in the history
  • Loading branch information
Ktmi committed Aug 28, 2024
1 parent 7e79bf0 commit 41cb266
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion kytos/logging/filters.py
Original file line number Diff line number Diff line change
Expand Up @@ -115,4 +115,4 @@ def filter(self, record: LogRecord) -> bool:

@staticmethod
def _record_key(record: LogRecord):
return (record.module, record.levelno, record.message, record.args)
return (record.module, record.levelno, record.msg, record.args)

0 comments on commit 41cb266

Please sign in to comment.