Answer the question
In order to leave comments, you need to log in
Answer the question
In order to leave comments, you need to log in
If logging settings are overridden , check if logging to the console is indeed configured.
LOGGING = {
...,
'handlers': {
'console': {
'class': 'logging.StreamHandler',
},
},
'loggers': {
'django': {
'handlers': ['console'],
'level': 'INFO',
},
},
}
LOGGING = {
'version': 1,
'disable_existing_loggers': False,
...
}
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question