Update debug log

This commit is contained in:
Nathan Chapman 2022-09-04 17:00:54 -06:00
parent ea028a7642
commit db45fd2d6f

View File

@ -134,13 +134,18 @@ LOGGING = {
'version': 1,
'disable_existing_loggers': True,
'handlers': {
'console': {
'class': 'logging.StreamHandler',
'file': {
'level': 'DEBUG',
'class': 'logging.FileHandler',
'filename': '/home/nathanchapman/debug.log',
},
},
'root': {
'handlers': ['console'],
'level': 'WARNING',
'loggers': {
'django': {
'handlers': ['file'],
'level': 'DEBUG',
'propagate': True,
},
},
}