Any idea where logs might be hiding? I'm not getting any logging output
from django when an error occurs.
I'm using the fab deploy functionality.
I've looked in the logs/* files that are generated, but only the supervisor
& nginx logs seem to be populated. Nothing on the django ones.
My local_settings.py.template contains the following:
LOGGING = {
'version': 1,
'disable_existing_loggers': False,
'handlers': {
'file': {
'level': 'INFO',
'class': 'logging.FileHandler',
'filename': '/home/%(user)s/logs/%(proj_name)s_django.log',
},
'mail_admins': {
'level': 'ERROR',
'class': 'django.utils.log.AdminEmailHandler',
}
},
'loggers': {
'django.*': {
'level': 'INFO',
'handlers': ['file', 'mail_admins'],
'propagate': True,
},
'django.server': {
'level': 'ERROR',
'handlers': ['mail_admins'],
}
}
}
Any pointers on what else to check would be great, but I've tried
everything I can think of :(
--
You received this message because you are subscribed to the Google Groups
"Mezzanine Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email
to [email protected].
For more options, visit https://groups.google.com/d/optout.