Opened 13 years ago

Closed 12 years ago

#15630 closed Bug (fixed)

Add to docs information about the fact that unhandled exceptions are not logged if DEBUG=True

Reported by: Goldan Owned by: nobody
Component: Documentation Version: dev
Severity: Normal Keywords:
Cc: Goldan Triage Stage: Accepted
Has patch: no Needs documentation: no
Needs tests: no Patch needs improvement: no
Easy pickings: no UI/UX: no

Description

I failed to find the following valuable information in the documentation.

If DEBUG=True, logger.error() function is never called for unhandled exceptions (that cause the 500 error). See django/core/handlers/base.py, function handle_uncaught_exception(). So the information about the exception is not logged anywhere.

It took me some time to figure it out, so I think it should be mentioned in the docs.

Change History (7)

comment:1 by Julien Phalip, 13 years ago

Triage Stage: UnreviewedAccepted

comment:2 by Luke Plant, 13 years ago

Type: Bug

comment:3 by Luke Plant, 13 years ago

Severity: Normal

comment:4 by Aymeric Augustin, 12 years ago

UI/UX: unset

Change UI/UX from NULL to False.

comment:5 by Aymeric Augustin, 12 years ago

Easy pickings: unset

Change Easy pickings from NULL to False.

comment:6 by Tim Graham, 12 years ago

This report is either incorrect or I'm not understanding it as there's a logger.error statement in handle_uncaught_exception which logs exception regardless of settings.DEBUG.

comment:7 by Preston Holmes, 12 years ago

Resolution: fixed
Status: newclosed

fixed with #16288

Note: See TracTickets for help on using tickets.
Back to Top