Last active
November 11, 2024 07:14
-
-
Save ipmb/0618f44dc5270f9a2be2826d0d933ed7 to your computer and use it in GitHub Desktop.
Django logging example
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import logging.config | |
import os | |
from django.utils.log import DEFAULT_LOGGING | |
# Disable Django's logging setup | |
LOGGING_CONFIG = None | |
LOGLEVEL = os.environ.get('LOGLEVEL', 'info').upper() | |
logging.config.dictConfig({ | |
'version': 1, | |
'disable_existing_loggers': False, | |
'formatters': { | |
'default': { | |
# exact format is not important, this is the minimum information | |
'format': '%(asctime)s %(name)-12s %(levelname)-8s %(message)s', | |
}, | |
'django.server': DEFAULT_LOGGING['formatters']['django.server'], | |
}, | |
'handlers': { | |
# console logs to stderr | |
'console': { | |
'class': 'logging.StreamHandler', | |
'formatter': 'default', | |
}, | |
# Add Handler for Sentry for `warning` and above | |
'sentry': { | |
'level': 'WARNING', | |
'class': 'raven.contrib.django.raven_compat.handlers.SentryHandler', | |
}, | |
'django.server': DEFAULT_LOGGING['handlers']['django.server'], | |
}, | |
'loggers': { | |
# default for all undefined Python modules | |
'': { | |
'level': 'WARNING', | |
'handlers': ['console', 'sentry'], | |
}, | |
# Our application code | |
'app': { | |
'level': LOGLEVEL, | |
'handlers': ['console', 'sentry'], | |
# Avoid double logging because of root logger | |
'propagate': False, | |
}, | |
# Prevent noisy modules from logging to Sentry | |
'noisy_module': { | |
'level': 'ERROR', | |
'handlers': ['console'], | |
'propagate': False, | |
}, | |
# Default runserver request logging | |
'django.server': DEFAULT_LOGGING['loggers']['django.server'], | |
}, | |
}) |
Great article that referenced this. Thanks!
this is very good example. How would I create a file based logging configuration in my multi-app django project
That is strange, but when I use django.server
logger all other loggers stops working. Even django.server
logger is not working... any clues?
Thank you!
Thanks for the great content!
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Thanks @ipmb for this!!!