LOGGING = { 'version': 1, 'disable_existing_loggers': True, 'formatters': { 'verbose': { 'format': '%(levelname)s %(asctime)s %(module)s %(process)d %(thread)d %(message)s' }, 'simple': { 'format': '%(levelname)s %(message)s' } }, 'handlers': { 'console': { 'level':'DEBUG', 'class':'logging.StreamHandler', 'strm': sys.stdout, 'formatter':'simple' }, }, 'loggers': { 'django': { 'handlers':['console'], 'propagate': True, 'level':'INFO', }, #'django.request': { # 'handlers': ['console'], # 'level': 'ERROR', # 'propagate': True, #}, }, } Tried both out loggers, active and the one commented out (and many others). Running
python manage.py runserver 0.0.0.0:8080 And yet no strack trace on a 500 error printed my console, just:
[21/Feb/2012 04:21:10] "POST /some/path/function/ HTTP/1.1" 500 105627 What am I doing wrong?