mirror of https://github.com/zulip/zulip.git
settings: Disable INFO level autoreload logging.
This removes some logging spam starting the development environment.
This commit is contained in:
parent
fb757e91c1
commit
3b20c951cf
|
@ -826,6 +826,10 @@ LOGGING: Dict[str, Any] = {
|
|||
'handlers': ['console', 'file'],
|
||||
'propagate': False,
|
||||
},
|
||||
'django.utils.autoreload': {
|
||||
# We don't want logging spam from the autoreloaders in development.
|
||||
'level': 'WARNING',
|
||||
},
|
||||
'django.template': {
|
||||
'level': 'DEBUG',
|
||||
'filters': ['require_debug_true', 'skip_site_packages_logs'],
|
||||
|
|
Loading…
Reference in New Issue