Hi,
I am developing in pycharm, django correctly was writing every SQL command in console, but from some time it stopped to do so. I have checked nearly everything, can somebody help to troubleshoot this? This feature is quite critical for developing ..
DEBUG = True
TEMPLATE_DEBUG = DEBUG
I disabled django debug toolbar. I do not know if this is related:
LOGGING = {
'version': 1,
'disable_existing_loggers': False,
'filters': {
'require_debug_false': {
'()': 'django.utils.log.RequireDebugFalse'
}
},
'handlers': {
'mail_admins': {
'level': 'ERROR',
'filters': ['require_debug_false'],
'class': 'django.utils.log.AdminEmailHandler'
}
},
'loggers': {
'django.request': {
'handlers': ['mail_admins'],
'level': 'ERROR',
'propagate': True,
},
}
}