feat: add 'hash' logger with console, file, and hash_file handlers

This commit is contained in:
Sam Chau
2025-01-08 18:13:23 +10:30
parent b4b59b7fe2
commit 5473b2b527

View File

@@ -68,6 +68,13 @@ def setup_logging():
'propagate': False
},
# The 'hash' logger uses all three handlers
'hash': {
'level': 'INFO',
'handlers': ['console', 'file', 'hash_file'],
'propagate': False
},
# Example: Keep these if you want separate loggers
'werkzeug': {
'level': 'INFO',