logging.txt 25 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723
  1. =======
  2. Logging
  3. =======
  4. .. module:: django.utils.log
  5. :synopsis: Logging tools for Django applications
  6. A quick logging primer
  7. ======================
  8. Django uses Python's builtin :mod:`logging` module to perform system logging.
  9. The usage of this module is discussed in detail in Python's own documentation.
  10. However, if you've never used Python's logging framework (or even if you have),
  11. here's a quick primer.
  12. The cast of players
  13. -------------------
  14. A Python logging configuration consists of four parts:
  15. * :ref:`topic-logging-parts-loggers`
  16. * :ref:`topic-logging-parts-handlers`
  17. * :ref:`topic-logging-parts-filters`
  18. * :ref:`topic-logging-parts-formatters`
  19. .. _topic-logging-parts-loggers:
  20. Loggers
  21. ~~~~~~~
  22. A logger is the entry point into the logging system. Each logger is
  23. a named bucket to which messages can be written for processing.
  24. A logger is configured to have a *log level*. This log level describes
  25. the severity of the messages that the logger will handle. Python
  26. defines the following log levels:
  27. * ``DEBUG``: Low level system information for debugging purposes
  28. * ``INFO``: General system information
  29. * ``WARNING``: Information describing a minor problem that has
  30. occurred.
  31. * ``ERROR``: Information describing a major problem that has
  32. occurred.
  33. * ``CRITICAL``: Information describing a critical problem that has
  34. occurred.
  35. Each message that is written to the logger is a *Log Record*. Each log
  36. record also has a *log level* indicating the severity of that specific
  37. message. A log record can also contain useful metadata that describes
  38. the event that is being logged. This can include details such as a
  39. stack trace or an error code.
  40. When a message is given to the logger, the log level of the message is
  41. compared to the log level of the logger. If the log level of the
  42. message meets or exceeds the log level of the logger itself, the
  43. message will undergo further processing. If it doesn't, the message
  44. will be ignored.
  45. Once a logger has determined that a message needs to be processed,
  46. it is passed to a *Handler*.
  47. .. _topic-logging-parts-handlers:
  48. Handlers
  49. ~~~~~~~~
  50. The handler is the engine that determines what happens to each message
  51. in a logger. It describes a particular logging behavior, such as
  52. writing a message to the screen, to a file, or to a network socket.
  53. Like loggers, handlers also have a log level. If the log level of a
  54. log record doesn't meet or exceed the level of the handler, the
  55. handler will ignore the message.
  56. A logger can have multiple handlers, and each handler can have a
  57. different log level. In this way, it is possible to provide different
  58. forms of notification depending on the importance of a message. For
  59. example, you could install one handler that forwards ``ERROR`` and
  60. ``CRITICAL`` messages to a paging service, while a second handler
  61. logs all messages (including ``ERROR`` and ``CRITICAL`` messages) to a
  62. file for later analysis.
  63. .. _topic-logging-parts-filters:
  64. Filters
  65. ~~~~~~~
  66. A filter is used to provide additional control over which log records
  67. are passed from logger to handler.
  68. By default, any log message that meets log level requirements will be
  69. handled. However, by installing a filter, you can place additional
  70. criteria on the logging process. For example, you could install a
  71. filter that only allows ``ERROR`` messages from a particular source to
  72. be emitted.
  73. Filters can also be used to modify the logging record prior to being
  74. emitted. For example, you could write a filter that downgrades
  75. ``ERROR`` log records to ``WARNING`` records if a particular set of
  76. criteria are met.
  77. Filters can be installed on loggers or on handlers; multiple filters
  78. can be used in a chain to perform multiple filtering actions.
  79. .. _topic-logging-parts-formatters:
  80. Formatters
  81. ~~~~~~~~~~
  82. Ultimately, a log record needs to be rendered as text. Formatters
  83. describe the exact format of that text. A formatter usually consists
  84. of a Python formatting string containing
  85. :ref:`LogRecord attributes <python:logrecord-attributes>`; however,
  86. you can also write custom formatters to implement specific formatting behavior.
  87. Using logging
  88. =============
  89. Once you have configured your loggers, handlers, filters and
  90. formatters, you need to place logging calls into your code. Using the
  91. logging framework is very simple. Here's an example::
  92. # import the logging library
  93. import logging
  94. # Get an instance of a logger
  95. logger = logging.getLogger(__name__)
  96. def my_view(request, arg1, arg):
  97. ...
  98. if bad_mojo:
  99. # Log an error message
  100. logger.error('Something went wrong!')
  101. And that's it! Every time the ``bad_mojo`` condition is activated, an
  102. error log record will be written.
  103. Naming loggers
  104. --------------
  105. The call to :func:`logging.getLogger()` obtains (creating, if
  106. necessary) an instance of a logger. The logger instance is identified
  107. by a name. This name is used to identify the logger for configuration
  108. purposes.
  109. By convention, the logger name is usually ``__name__``, the name of
  110. the python module that contains the logger. This allows you to filter
  111. and handle logging calls on a per-module basis. However, if you have
  112. some other way of organizing your logging messages, you can provide
  113. any dot-separated name to identify your logger::
  114. # Get an instance of a specific named logger
  115. logger = logging.getLogger('project.interesting.stuff')
  116. The dotted paths of logger names define a hierarchy. The
  117. ``project.interesting`` logger is considered to be a parent of the
  118. ``project.interesting.stuff`` logger; the ``project`` logger
  119. is a parent of the ``project.interesting`` logger.
  120. Why is the hierarchy important? Well, because loggers can be set to
  121. *propagate* their logging calls to their parents. In this way, you can
  122. define a single set of handlers at the root of a logger tree, and
  123. capture all logging calls in the subtree of loggers. A logging handler
  124. defined in the ``project`` namespace will catch all logging messages
  125. issued on the ``project.interesting`` and
  126. ``project.interesting.stuff`` loggers.
  127. This propagation can be controlled on a per-logger basis. If
  128. you don't want a particular logger to propagate to its parents, you
  129. can turn off this behavior.
  130. Making logging calls
  131. --------------------
  132. The logger instance contains an entry method for each of the default
  133. log levels:
  134. * ``logger.debug()``
  135. * ``logger.info()``
  136. * ``logger.warning()``
  137. * ``logger.error()``
  138. * ``logger.critical()``
  139. There are two other logging calls available:
  140. * ``logger.log()``: Manually emits a logging message with a
  141. specific log level.
  142. * ``logger.exception()``: Creates an ``ERROR`` level logging
  143. message wrapping the current exception stack frame.
  144. .. _configuring-logging:
  145. Configuring logging
  146. ===================
  147. Of course, it isn't enough to just put logging calls into your code.
  148. You also need to configure the loggers, handlers, filters and
  149. formatters to ensure that logging output is output in a useful way.
  150. Python's logging library provides several techniques to configure
  151. logging, ranging from a programmatic interface to configuration files.
  152. By default, Django uses the `dictConfig format`_.
  153. In order to configure logging, you use :setting:`LOGGING` to define a
  154. dictionary of logging settings. These settings describes the loggers,
  155. handlers, filters and formatters that you want in your logging setup,
  156. and the log levels and other properties that you want those components
  157. to have.
  158. By default, the :setting:`LOGGING` setting is merged with :ref:`Django's
  159. default logging configuration <default-logging-configuration>` using the
  160. following scheme.
  161. If the ``disable_existing_loggers`` key in the :setting:`LOGGING` dictConfig is
  162. set to ``True`` (which is the default) then all loggers from the default
  163. configuration will be disabled. Disabled loggers are not the same as removed;
  164. the logger will still exist, but will silently discard anything logged to it,
  165. not even propagating entries to a parent logger. Thus you should be very
  166. careful using ``'disable_existing_loggers': True``; it's probably not what you
  167. want. Instead, you can set ``disable_existing_loggers`` to ``False`` and
  168. redefine some or all of the default loggers; or you can set
  169. :setting:`LOGGING_CONFIG` to ``None`` and :ref:`handle logging config yourself
  170. <disabling-logging-configuration>`.
  171. Logging is configured as part of the general Django ``setup()`` function.
  172. Therefore, you can be certain that loggers are always ready for use in your
  173. project code.
  174. .. _dictConfig format: https://docs.python.org/library/logging.config.html#configuration-dictionary-schema
  175. Examples
  176. --------
  177. The full documentation for `dictConfig format`_ is the best source of
  178. information about logging configuration dictionaries. However, to give
  179. you a taste of what is possible, here are several examples.
  180. First, here's a simple configuration which writes all request logging from the
  181. :ref:`django-request-logger` logger to a local file::
  182. LOGGING = {
  183. 'version': 1,
  184. 'disable_existing_loggers': False,
  185. 'handlers': {
  186. 'file': {
  187. 'level': 'DEBUG',
  188. 'class': 'logging.FileHandler',
  189. 'filename': '/path/to/django/debug.log',
  190. },
  191. },
  192. 'loggers': {
  193. 'django.request': {
  194. 'handlers': ['file'],
  195. 'level': 'DEBUG',
  196. 'propagate': True,
  197. },
  198. },
  199. }
  200. If you use this example, be sure to change the ``'filename'`` path to a
  201. location that's writable by the user that's running the Django application.
  202. Second, here's an example of how to make the logging system print Django's
  203. logging to the console. It overrides the fact that ``django.request`` and
  204. ``django.security`` don't propagate their log entries by default. It may be
  205. useful during local development.
  206. By default, this config only sends messages of level ``INFO`` or higher to the
  207. console. Django does not log many such messages. Set the environment variable
  208. ``DJANGO_LOG_LEVEL=DEBUG`` to see all of Django's debug logging which is very
  209. verbose as it includes all database queries::
  210. import os
  211. LOGGING = {
  212. 'version': 1,
  213. 'disable_existing_loggers': False,
  214. 'handlers': {
  215. 'console': {
  216. 'class': 'logging.StreamHandler',
  217. },
  218. },
  219. 'loggers': {
  220. 'django': {
  221. 'handlers': ['console'],
  222. 'level': os.getenv('DJANGO_LOG_LEVEL', 'INFO'),
  223. },
  224. },
  225. }
  226. Finally, here's an example of a fairly complex logging setup::
  227. LOGGING = {
  228. 'version': 1,
  229. 'disable_existing_loggers': False,
  230. 'formatters': {
  231. 'verbose': {
  232. 'format': '%(levelname)s %(asctime)s %(module)s %(process)d %(thread)d %(message)s'
  233. },
  234. 'simple': {
  235. 'format': '%(levelname)s %(message)s'
  236. },
  237. },
  238. 'filters': {
  239. 'special': {
  240. '()': 'project.logging.SpecialFilter',
  241. 'foo': 'bar',
  242. }
  243. },
  244. 'handlers': {
  245. 'null': {
  246. 'level': 'DEBUG',
  247. 'class': 'logging.NullHandler',
  248. },
  249. 'console': {
  250. 'level': 'DEBUG',
  251. 'class': 'logging.StreamHandler',
  252. 'formatter': 'simple'
  253. },
  254. 'mail_admins': {
  255. 'level': 'ERROR',
  256. 'class': 'django.utils.log.AdminEmailHandler',
  257. 'filters': ['special']
  258. }
  259. },
  260. 'loggers': {
  261. 'django': {
  262. 'handlers': ['null'],
  263. 'propagate': True,
  264. 'level': 'INFO',
  265. },
  266. 'django.request': {
  267. 'handlers': ['mail_admins'],
  268. 'level': 'ERROR',
  269. 'propagate': False,
  270. },
  271. 'myproject.custom': {
  272. 'handlers': ['console', 'mail_admins'],
  273. 'level': 'INFO',
  274. 'filters': ['special']
  275. }
  276. }
  277. }
  278. This logging configuration does the following things:
  279. * Identifies the configuration as being in 'dictConfig version 1'
  280. format. At present, this is the only dictConfig format version.
  281. * Defines two formatters:
  282. * ``simple``, that just outputs the log level name (e.g.,
  283. ``DEBUG``) and the log message.
  284. The ``format`` string is a normal Python formatting string
  285. describing the details that are to be output on each logging
  286. line. The full list of detail that can be output can be
  287. found in the `formatter documentation`_.
  288. * ``verbose``, that outputs the log level name, the log
  289. message, plus the time, process, thread and module that
  290. generate the log message.
  291. * Defines one filter -- ``project.logging.SpecialFilter``,
  292. using the alias ``special``. If this filter required additional
  293. arguments at time of construction, they can be provided as
  294. additional keys in the filter configuration dictionary. In this
  295. case, the argument ``foo`` will be given a value of ``bar`` when
  296. instantiating the ``SpecialFilter``.
  297. * Defines three handlers:
  298. * ``null``, a NullHandler, which will pass any ``DEBUG`` (or
  299. higher) message to ``/dev/null``.
  300. * ``console``, a StreamHandler, which will print any ``DEBUG``
  301. (or higher) message to stderr. This handler uses the ``simple`` output
  302. format.
  303. * ``mail_admins``, an AdminEmailHandler, which will email any
  304. ``ERROR`` (or higher) message to the site admins. This handler uses
  305. the ``special`` filter.
  306. * Configures three loggers:
  307. * ``django``, which passes all messages at ``INFO`` or higher
  308. to the ``null`` handler.
  309. * ``django.request``, which passes all ``ERROR`` messages to
  310. the ``mail_admins`` handler. In addition, this logger is
  311. marked to *not* propagate messages. This means that log
  312. messages written to ``django.request`` will not be handled
  313. by the ``django`` logger.
  314. * ``myproject.custom``, which passes all messages at ``INFO``
  315. or higher that also pass the ``special`` filter to two
  316. handlers -- the ``console``, and ``mail_admins``. This
  317. means that all ``INFO`` level messages (or higher) will be
  318. printed to the console; ``ERROR`` and ``CRITICAL``
  319. messages will also be output via email.
  320. .. _formatter documentation: https://docs.python.org/library/logging.html#formatter-objects
  321. Custom logging configuration
  322. ----------------------------
  323. If you don't want to use Python's dictConfig format to configure your
  324. logger, you can specify your own configuration scheme.
  325. The :setting:`LOGGING_CONFIG` setting defines the callable that will
  326. be used to configure Django's loggers. By default, it points at
  327. Python's :func:`logging.config.dictConfig()` function. However, if you want to
  328. use a different configuration process, you can use any other callable
  329. that takes a single argument. The contents of :setting:`LOGGING` will
  330. be provided as the value of that argument when logging is configured.
  331. .. _disabling-logging-configuration:
  332. Disabling logging configuration
  333. -------------------------------
  334. If you don't want to configure logging at all (or you want to manually
  335. configure logging using your own approach), you can set
  336. :setting:`LOGGING_CONFIG` to ``None``. This will disable the
  337. configuration process for :ref:`Django's default logging
  338. <default-logging-configuration>`. Here's an example that disables Django's
  339. logging configuration and then manually configures logging:
  340. .. snippet::
  341. :filename: settings.py
  342. LOGGING_CONFIG = None
  343. import logging.config
  344. logging.config.dictConfig(...)
  345. Setting :setting:`LOGGING_CONFIG` to ``None`` only means that the automatic
  346. configuration process is disabled, not logging itself. If you disable the
  347. configuration process, Django will still make logging calls, falling back to
  348. whatever default logging behavior is defined.
  349. Django's logging extensions
  350. ===========================
  351. Django provides a number of utilities to handle the unique
  352. requirements of logging in Web server environment.
  353. Loggers
  354. -------
  355. Django provides several built-in loggers.
  356. ``django``
  357. ~~~~~~~~~~
  358. ``django`` is the catch-all logger. No messages are posted directly to
  359. this logger.
  360. .. _django-request-logger:
  361. ``django.request``
  362. ~~~~~~~~~~~~~~~~~~
  363. Log messages related to the handling of requests. 5XX responses are
  364. raised as ``ERROR`` messages; 4XX responses are raised as ``WARNING``
  365. messages.
  366. Messages to this logger have the following extra context:
  367. * ``status_code``: The HTTP response code associated with the
  368. request.
  369. * ``request``: The request object that generated the logging
  370. message.
  371. .. _django-template-logger:
  372. ``django.template``
  373. ~~~~~~~~~~~~~~~~~~~
  374. .. versionadded:: 1.9
  375. Log messages related to the rendering of templates. Missing context variables
  376. are logged as ``DEBUG`` messages if :setting:`DEBUG` is `True`.
  377. .. _django-db-logger:
  378. ``django.db.backends``
  379. ~~~~~~~~~~~~~~~~~~~~~~
  380. Messages relating to the interaction of code with the database. For example,
  381. every application-level SQL statement executed by a request is logged at the
  382. ``DEBUG`` level to this logger.
  383. Messages to this logger have the following extra context:
  384. * ``duration``: The time taken to execute the SQL statement.
  385. * ``sql``: The SQL statement that was executed.
  386. * ``params``: The parameters that were used in the SQL call.
  387. For performance reasons, SQL logging is only enabled when
  388. ``settings.DEBUG`` is set to ``True``, regardless of the logging
  389. level or handlers that are installed.
  390. This logging does not include framework-level initialization (e.g.
  391. ``SET TIMEZONE``) or transaction management queries (e.g. ``BEGIN``,
  392. ``COMMIT``, and ``ROLLBACK``). Turn on query logging in your database if you
  393. wish to view all database queries.
  394. ``django.security.*``
  395. ~~~~~~~~~~~~~~~~~~~~~~
  396. The security loggers will receive messages on any occurrence of
  397. :exc:`~django.core.exceptions.SuspiciousOperation`. There is a sub-logger for
  398. each sub-type of SuspiciousOperation. The level of the log event depends on
  399. where the exception is handled. Most occurrences are logged as a warning, while
  400. any ``SuspiciousOperation`` that reaches the WSGI handler will be logged as an
  401. error. For example, when an HTTP ``Host`` header is included in a request from
  402. a client that does not match :setting:`ALLOWED_HOSTS`, Django will return a 400
  403. response, and an error message will be logged to the
  404. ``django.security.DisallowedHost`` logger.
  405. Only the parent ``django.security`` logger is configured by default, and all
  406. child loggers will propagate to the parent logger. The ``django.security``
  407. logger is configured the same as the ``django.request`` logger, and any error
  408. events will be mailed to admins. Requests resulting in a 400 response due to
  409. a ``SuspiciousOperation`` will not be logged to the ``django.request`` logger,
  410. but only to the ``django.security`` logger.
  411. To silence a particular type of SuspiciousOperation, you can override that
  412. specific logger following this example:
  413. .. code-block:: python
  414. 'loggers': {
  415. 'django.security.DisallowedHost': {
  416. 'handlers': ['null'],
  417. 'propagate': False,
  418. },
  419. },
  420. ``django.db.backends.schema``
  421. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  422. Logs the SQL queries that are executed during schema changes to the database by
  423. the :doc:`migrations framework </topics/migrations>`. Note that it won't log the
  424. queries executed by :class:`~django.db.migrations.operations.RunPython`.
  425. Handlers
  426. --------
  427. Django provides one log handler in addition to those provided by the
  428. Python logging module.
  429. .. class:: AdminEmailHandler(include_html=False, email_backend=None)
  430. This handler sends an email to the site admins for each log
  431. message it receives.
  432. If the log record contains a ``request`` attribute, the full details
  433. of the request will be included in the email.
  434. If the log record contains stack trace information, that stack
  435. trace will be included in the email.
  436. The ``include_html`` argument of ``AdminEmailHandler`` is used to
  437. control whether the traceback email includes an HTML attachment
  438. containing the full content of the debug Web page that would have been
  439. produced if :setting:`DEBUG` were ``True``. To set this value in your
  440. configuration, include it in the handler definition for
  441. ``django.utils.log.AdminEmailHandler``, like this:
  442. .. code-block:: python
  443. 'handlers': {
  444. 'mail_admins': {
  445. 'level': 'ERROR',
  446. 'class': 'django.utils.log.AdminEmailHandler',
  447. 'include_html': True,
  448. }
  449. },
  450. Note that this HTML version of the email contains a full traceback,
  451. with names and values of local variables at each level of the stack, plus
  452. the values of your Django settings. This information is potentially very
  453. sensitive, and you may not want to send it over email. Consider using
  454. something such as `Sentry`_ to get the best of both worlds -- the
  455. rich information of full tracebacks plus the security of *not* sending the
  456. information over email. You may also explicitly designate certain
  457. sensitive information to be filtered out of error reports -- learn more on
  458. :ref:`Filtering error reports<filtering-error-reports>`.
  459. By setting the ``email_backend`` argument of ``AdminEmailHandler``, the
  460. :ref:`email backend <topic-email-backends>` that is being used by the
  461. handler can be overridden, like this:
  462. .. code-block:: python
  463. 'handlers': {
  464. 'mail_admins': {
  465. 'level': 'ERROR',
  466. 'class': 'django.utils.log.AdminEmailHandler',
  467. 'email_backend': 'django.core.mail.backends.filebased.EmailBackend',
  468. }
  469. },
  470. By default, an instance of the email backend specified in
  471. :setting:`EMAIL_BACKEND` will be used.
  472. .. method:: send_mail(subject, message, *args, **kwargs)
  473. .. versionadded:: 1.8
  474. Sends emails to admin users. To customize this behavior, you can
  475. subclass the :class:`~django.utils.log.AdminEmailHandler` class and
  476. override this method.
  477. .. _Sentry: https://pypi.python.org/pypi/sentry
  478. Filters
  479. -------
  480. Django provides two log filters in addition to those provided by the Python
  481. logging module.
  482. .. class:: CallbackFilter(callback)
  483. This filter accepts a callback function (which should accept a single
  484. argument, the record to be logged), and calls it for each record that
  485. passes through the filter. Handling of that record will not proceed if the
  486. callback returns False.
  487. For instance, to filter out :exc:`~django.http.UnreadablePostError`
  488. (raised when a user cancels an upload) from the admin emails, you would
  489. create a filter function::
  490. from django.http import UnreadablePostError
  491. def skip_unreadable_post(record):
  492. if record.exc_info:
  493. exc_type, exc_value = record.exc_info[:2]
  494. if isinstance(exc_value, UnreadablePostError):
  495. return False
  496. return True
  497. and then add it to your logging config:
  498. .. code-block:: python
  499. 'filters': {
  500. 'skip_unreadable_posts': {
  501. '()': 'django.utils.log.CallbackFilter',
  502. 'callback': skip_unreadable_post,
  503. }
  504. },
  505. 'handlers': {
  506. 'mail_admins': {
  507. 'level': 'ERROR',
  508. 'filters': ['skip_unreadable_posts'],
  509. 'class': 'django.utils.log.AdminEmailHandler'
  510. }
  511. },
  512. .. class:: RequireDebugFalse()
  513. This filter will only pass on records when settings.DEBUG is False.
  514. This filter is used as follows in the default :setting:`LOGGING`
  515. configuration to ensure that the :class:`AdminEmailHandler` only sends
  516. error emails to admins when :setting:`DEBUG` is ``False``:
  517. .. code-block:: python
  518. 'filters': {
  519. 'require_debug_false': {
  520. '()': 'django.utils.log.RequireDebugFalse',
  521. }
  522. },
  523. 'handlers': {
  524. 'mail_admins': {
  525. 'level': 'ERROR',
  526. 'filters': ['require_debug_false'],
  527. 'class': 'django.utils.log.AdminEmailHandler'
  528. }
  529. },
  530. .. class:: RequireDebugTrue()
  531. This filter is similar to :class:`RequireDebugFalse`, except that records are
  532. passed only when :setting:`DEBUG` is ``True``.
  533. .. _default-logging-configuration:
  534. Django's default logging configuration
  535. ======================================
  536. By default, Django configures the following logging:
  537. When :setting:`DEBUG` is ``True``:
  538. * The ``django`` catch-all logger sends all messages at the ``INFO`` level or
  539. higher to the console. Django doesn't make any such logging calls at this
  540. time (all logging is at the ``DEBUG`` level or handled by the
  541. ``django.request`` and ``django.security`` loggers).
  542. * The ``py.warnings`` logger, which handles messages from ``warnings.warn()``,
  543. sends messages to the console.
  544. When :setting:`DEBUG` is ``False``:
  545. * The ``django.request`` and ``django.security`` loggers send messages with
  546. ``ERROR`` or ``CRITICAL`` level to :class:`AdminEmailHandler`. These loggers
  547. ignore anything at the ``WARNING`` level or below and log entries aren't
  548. propagated to other loggers (they won't reach the ``django`` catch-all
  549. logger, even when ``DEBUG`` is ``True``).
  550. See also :ref:`Configuring logging <configuring-logging>` to learn how you can
  551. complement or replace this default logging configuration.