Skip to content

Commit

Permalink
Fixed #17330 -- Fixed error in logging.txt. Thanks, jblaine
Browse files Browse the repository at this point in the history
git-svn-id: http://code.djangoproject.com/svn/django/trunk@17215 bcc190cf-cafb-0310-a4f2-bffc1f526a37
  • Loading branch information
adrianholovaty committed Dec 17, 2011
1 parent 2494dd2 commit 1bf5815
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions docs/topics/logging.txt
Expand Up @@ -317,15 +317,15 @@ This logging configuration does the following things:

* Defines three handlers:

* ``null``, a NullHandler, which will pass any ``DEBUG`` or
higher message to ``/dev/null``.
* ``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
(or higher) message to stdout. This handler uses the `simple` output
format.

* ``mail_admins``, an AdminEmailHandler, which will email any
``ERROR`` level message to the site admins. This handler uses
``ERROR`` (or higher) message to the site admins. This handler uses
the ``special`` filter.

* Configures three loggers:
Expand Down

0 comments on commit 1bf5815

Please sign in to comment.