mirror of https://github.com/django/django.git
Fixed #17330 -- Fixed error in logging.txt. Thanks, jblaine
git-svn-id: http://code.djangoproject.com/svn/django/trunk@17215 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
parent
2494dd25f5
commit
1bf58154f7
|
@ -317,15 +317,15 @@ This logging configuration does the following things:
|
||||||
|
|
||||||
* Defines three handlers:
|
* Defines three handlers:
|
||||||
|
|
||||||
* ``null``, a NullHandler, which will pass any ``DEBUG`` or
|
* ``null``, a NullHandler, which will pass any ``DEBUG`` (or
|
||||||
higher message to ``/dev/null``.
|
higher) message to ``/dev/null``.
|
||||||
|
|
||||||
* ``console``, a StreamHandler, which will print any ``DEBUG``
|
* ``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.
|
format.
|
||||||
|
|
||||||
* ``mail_admins``, an AdminEmailHandler, which will email any
|
* ``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.
|
the ``special`` filter.
|
||||||
|
|
||||||
* Configures three loggers:
|
* Configures three loggers:
|
||||||
|
|
Loading…
Reference in New Issue