Opened 12 years ago

Closed 12 years ago

#17330 closed Cleanup/optimization (fixed)

Logger documentation minor error

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

Description

Very minor nit:

https://docs.djangoproject.com/en/1.3/topics/logging/

...

Defines three handlers:

null, a NullHandler, which will pass any DEBUG or higher message to /dev/null.

console, a StreamHandler, which will print any DEBUG message to stdout. This handler uses the simple output format.

mail_admins, an AdminEmailHandler, which will e-mail any ERROR level message to the site admins. This handler uses the special filter.

For clarity, I believe the 'console' and 'mail_admins' blocks should be rewritten to indicate, as the 'null' one does, those handlers will act on DEBUG or ERROR level messages (respectively) *or higher*.

Correct?

Change History (2)

comment:1 by Aymeric Augustin, 12 years ago

Triage Stage: UnreviewedAccepted
Type: BugCleanup/optimization

comment:2 by Adrian Holovaty, 12 years ago

Resolution: fixed
Status: newclosed

In [17215]:

Fixed #17330 -- Fixed error in logging.txt. Thanks, jblaine

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