Django, logging to console.
This is how to setup console logging in django.
Setup DEBUG=True
at settings.py
and also add this LOGGING
configuration:
LOGGING = {
'version': 1,
'disable_existing_loggers': False,
'handlers': {
'console': {
'level': 'DEBUG',
'class': 'logging.StreamHandler',
},
},
'loggers': {
'': {
'handlers': ['console'],
'level': 'DEBUG',
'propagate': True,
},
},
}
Tested with Django 2.1