logging.txt 26 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750
  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 :ref:`dictConfig format
  153. <logging-config-dictschema>`.
  154. In order to configure logging, you use :setting:`LOGGING` to define a
  155. dictionary of logging settings. These settings describes the loggers,
  156. handlers, filters and formatters that you want in your logging setup,
  157. and the log levels and other properties that you want those components
  158. to have.
  159. By default, the :setting:`LOGGING` setting is merged with :ref:`Django's
  160. default logging configuration <default-logging-configuration>` using the
  161. following scheme.
  162. If the ``disable_existing_loggers`` key in the :setting:`LOGGING` dictConfig is
  163. set to ``True`` (which is the default) then all loggers from the default
  164. configuration will be disabled. Disabled loggers are not the same as removed;
  165. the logger will still exist, but will silently discard anything logged to it,
  166. not even propagating entries to a parent logger. Thus you should be very
  167. careful using ``'disable_existing_loggers': True``; it's probably not what you
  168. want. Instead, you can set ``disable_existing_loggers`` to ``False`` and
  169. redefine some or all of the default loggers; or you can set
  170. :setting:`LOGGING_CONFIG` to ``None`` and :ref:`handle logging config yourself
  171. <disabling-logging-configuration>`.
  172. Logging is configured as part of the general Django ``setup()`` function.
  173. Therefore, you can be certain that loggers are always ready for use in your
  174. project code.
  175. Examples
  176. --------
  177. The full documentation for :ref:`dictConfig format <logging-config-dictschema>`
  178. is the best source of information about logging configuration dictionaries.
  179. However, to give you a taste of what is possible, here are several examples.
  180. First, here's a simple configuration which writes all logging from the
  181. :ref:`django-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': {
  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 may be useful during local development.
  204. By default, this config only sends messages of level ``INFO`` or higher to the
  205. console (same as Django's default logging config, except that the default only
  206. displays log records when ``DEBUG=True``). Django does not log many such
  207. messages. With this config, however, you can also 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} {asctime} {module} {process:d} {thread:d} {message}',
  233. 'style': '{',
  234. },
  235. 'simple': {
  236. 'format': '{levelname} {message}',
  237. 'style': '{',
  238. },
  239. },
  240. 'filters': {
  241. 'special': {
  242. '()': 'project.logging.SpecialFilter',
  243. 'foo': 'bar',
  244. },
  245. 'require_debug_true': {
  246. '()': 'django.utils.log.RequireDebugTrue',
  247. },
  248. },
  249. 'handlers': {
  250. 'console': {
  251. 'level': 'INFO',
  252. 'filters': ['require_debug_true'],
  253. 'class': 'logging.StreamHandler',
  254. 'formatter': 'simple'
  255. },
  256. 'mail_admins': {
  257. 'level': 'ERROR',
  258. 'class': 'django.utils.log.AdminEmailHandler',
  259. 'filters': ['special']
  260. }
  261. },
  262. 'loggers': {
  263. 'django': {
  264. 'handlers': ['console'],
  265. 'propagate': True,
  266. },
  267. 'django.request': {
  268. 'handlers': ['mail_admins'],
  269. 'level': 'ERROR',
  270. 'propagate': False,
  271. },
  272. 'myproject.custom': {
  273. 'handlers': ['console', 'mail_admins'],
  274. 'level': 'INFO',
  275. 'filters': ['special']
  276. }
  277. }
  278. }
  279. This logging configuration does the following things:
  280. * Identifies the configuration as being in 'dictConfig version 1'
  281. format. At present, this is the only dictConfig format version.
  282. * Defines two formatters:
  283. * ``simple``, that just outputs the log level name (e.g.,
  284. ``DEBUG``) and the log message.
  285. The ``format`` string is a normal Python formatting string
  286. describing the details that are to be output on each logging
  287. line. The full list of detail that can be output can be
  288. found in :ref:`formatter-objects`.
  289. * ``verbose``, that outputs the log level name, the log
  290. message, plus the time, process, thread and module that
  291. generate the log message.
  292. * Defines two filters:
  293. * ``project.logging.SpecialFilter``, using the alias ``special``. If this
  294. filter required additional arguments, they can be provided as additional
  295. keys in the filter configuration dictionary. In this case, the argument
  296. ``foo`` will be given a value of ``bar`` when instantiating
  297. ``SpecialFilter``.
  298. * ``django.utils.log.RequireDebugTrue``, which passes on records when
  299. :setting:`DEBUG` is ``True``.
  300. * Defines two handlers:
  301. * ``console``, a :class:`~logging.StreamHandler`, which prints any ``INFO``
  302. (or higher) message to ``sys.stderr``. This handler uses the ``simple``
  303. output format.
  304. * ``mail_admins``, an :class:`AdminEmailHandler`, which emails any ``ERROR``
  305. (or higher) message to the site :setting:`ADMINS`. This handler uses the
  306. ``special`` filter.
  307. * Configures three loggers:
  308. * ``django``, which passes all messages to the ``console`` 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. Custom logging configuration
  321. ----------------------------
  322. If you don't want to use Python's dictConfig format to configure your
  323. logger, you can specify your own configuration scheme.
  324. The :setting:`LOGGING_CONFIG` setting defines the callable that will
  325. be used to configure Django's loggers. By default, it points at
  326. Python's :func:`logging.config.dictConfig()` function. However, if you want to
  327. use a different configuration process, you can use any other callable
  328. that takes a single argument. The contents of :setting:`LOGGING` will
  329. be provided as the value of that argument when logging is configured.
  330. .. _disabling-logging-configuration:
  331. Disabling logging configuration
  332. -------------------------------
  333. If you don't want to configure logging at all (or you want to manually
  334. configure logging using your own approach), you can set
  335. :setting:`LOGGING_CONFIG` to ``None``. This will disable the
  336. configuration process for :ref:`Django's default logging
  337. <default-logging-configuration>`. Here's an example that disables Django's
  338. logging configuration and then manually configures logging:
  339. .. snippet::
  340. :filename: settings.py
  341. LOGGING_CONFIG = None
  342. import logging.config
  343. logging.config.dictConfig(...)
  344. Setting :setting:`LOGGING_CONFIG` to ``None`` only means that the automatic
  345. configuration process is disabled, not logging itself. If you disable the
  346. configuration process, Django will still make logging calls, falling back to
  347. whatever default logging behavior is defined.
  348. Django's logging extensions
  349. ===========================
  350. Django provides a number of utilities to handle the unique
  351. requirements of logging in Web server environment.
  352. Loggers
  353. -------
  354. Django provides several built-in loggers.
  355. .. _django-logger:
  356. ``django``
  357. ~~~~~~~~~~
  358. The catch-all logger for messages in the ``django`` hierarchy. No messages are
  359. posted using this name but instead using one of the loggers below.
  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. Requests that are logged to the ``django.security`` logger aren't
  366. logged to ``django.request``.
  367. Messages to this logger have the following extra context:
  368. * ``status_code``: The HTTP response code associated with the
  369. request.
  370. * ``request``: The request object that generated the logging
  371. message.
  372. .. _django-server-logger:
  373. ``django.server``
  374. ~~~~~~~~~~~~~~~~~
  375. Log messages related to the handling of requests received by the server invoked
  376. by the :djadmin:`runserver` command. HTTP 5XX responses are logged as ``ERROR``
  377. messages, 4XX responses are logged as ``WARNING`` messages, and everything else
  378. is logged as ``INFO``.
  379. Messages to this logger have the following extra context:
  380. * ``status_code``: The HTTP response code associated with the request.
  381. * ``request``: The request object that generated the logging message.
  382. .. _django-template-logger:
  383. ``django.template``
  384. ~~~~~~~~~~~~~~~~~~~
  385. Log messages related to the rendering of templates.
  386. * Missing context variables are logged as ``DEBUG`` messages.
  387. .. _django-db-logger:
  388. ``django.db.backends``
  389. ~~~~~~~~~~~~~~~~~~~~~~
  390. Messages relating to the interaction of code with the database. For example,
  391. every application-level SQL statement executed by a request is logged at the
  392. ``DEBUG`` level to this logger.
  393. Messages to this logger have the following extra context:
  394. * ``duration``: The time taken to execute the SQL statement.
  395. * ``sql``: The SQL statement that was executed.
  396. * ``params``: The parameters that were used in the SQL call.
  397. For performance reasons, SQL logging is only enabled when
  398. ``settings.DEBUG`` is set to ``True``, regardless of the logging
  399. level or handlers that are installed.
  400. This logging does not include framework-level initialization (e.g.
  401. ``SET TIMEZONE``) or transaction management queries (e.g. ``BEGIN``,
  402. ``COMMIT``, and ``ROLLBACK``). Turn on query logging in your database if you
  403. wish to view all database queries.
  404. .. _django-security-logger:
  405. ``django.security.*``
  406. ~~~~~~~~~~~~~~~~~~~~~~
  407. The security loggers will receive messages on any occurrence of
  408. :exc:`~django.core.exceptions.SuspiciousOperation` and other security-related
  409. errors. There is a sub-logger for each subtype of security error, including all
  410. ``SuspiciousOperation``\s. The level of the log event depends on where the
  411. exception is handled. Most occurrences are logged as a warning, while
  412. any ``SuspiciousOperation`` that reaches the WSGI handler will be logged as an
  413. error. For example, when an HTTP ``Host`` header is included in a request from
  414. a client that does not match :setting:`ALLOWED_HOSTS`, Django will return a 400
  415. response, and an error message will be logged to the
  416. ``django.security.DisallowedHost`` logger.
  417. These log events will reach the ``django`` logger by default, which mails error
  418. events to admins when ``DEBUG=False``. Requests resulting in a 400 response due
  419. to a ``SuspiciousOperation`` will not be logged to the ``django.request``
  420. logger, but only to the ``django.security`` logger.
  421. To silence a particular type of ``SuspiciousOperation``, you can override that
  422. specific logger following this example:
  423. .. code-block:: python
  424. 'handlers': {
  425. 'null': {
  426. 'class': 'logging.NullHandler',
  427. },
  428. },
  429. 'loggers': {
  430. 'django.security.DisallowedHost': {
  431. 'handlers': ['null'],
  432. 'propagate': False,
  433. },
  434. },
  435. Other ``django.security`` loggers not based on ``SuspiciousOperation`` are:
  436. * ``django.security.csrf``: For :ref:`CSRF failures <csrf-rejected-requests>`.
  437. ``django.db.backends.schema``
  438. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  439. Logs the SQL queries that are executed during schema changes to the database by
  440. the :doc:`migrations framework </topics/migrations>`. Note that it won't log the
  441. queries executed by :class:`~django.db.migrations.operations.RunPython`.
  442. Messages to this logger have ``params`` and ``sql`` in their extra context (but
  443. unlike ``django.db.backends``, not duration). The values have the same meaning
  444. as explained in :ref:`django-db-logger`.
  445. Handlers
  446. --------
  447. Django provides one log handler in addition to those provided by the
  448. Python logging module.
  449. .. class:: AdminEmailHandler(include_html=False, email_backend=None)
  450. This handler sends an email to the site :setting:`ADMINS` for each log
  451. message it receives.
  452. If the log record contains a ``request`` attribute, the full details
  453. of the request will be included in the email. The email subject will
  454. include the phrase "internal IP" if the client's IP address is in the
  455. :setting:`INTERNAL_IPS` setting; if not, it will include "EXTERNAL IP".
  456. If the log record contains stack trace information, that stack
  457. trace will be included in the email.
  458. The ``include_html`` argument of ``AdminEmailHandler`` is used to
  459. control whether the traceback email includes an HTML attachment
  460. containing the full content of the debug Web page that would have been
  461. produced if :setting:`DEBUG` were ``True``. To set this value in your
  462. configuration, include it in the handler definition for
  463. ``django.utils.log.AdminEmailHandler``, like this:
  464. .. code-block:: python
  465. 'handlers': {
  466. 'mail_admins': {
  467. 'level': 'ERROR',
  468. 'class': 'django.utils.log.AdminEmailHandler',
  469. 'include_html': True,
  470. }
  471. },
  472. Note that this HTML version of the email contains a full traceback,
  473. with names and values of local variables at each level of the stack, plus
  474. the values of your Django settings. This information is potentially very
  475. sensitive, and you may not want to send it over email. Consider using
  476. something such as `Sentry`_ to get the best of both worlds -- the
  477. rich information of full tracebacks plus the security of *not* sending the
  478. information over email. You may also explicitly designate certain
  479. sensitive information to be filtered out of error reports -- learn more on
  480. :ref:`Filtering error reports<filtering-error-reports>`.
  481. By setting the ``email_backend`` argument of ``AdminEmailHandler``, the
  482. :ref:`email backend <topic-email-backends>` that is being used by the
  483. handler can be overridden, like this:
  484. .. code-block:: python
  485. 'handlers': {
  486. 'mail_admins': {
  487. 'level': 'ERROR',
  488. 'class': 'django.utils.log.AdminEmailHandler',
  489. 'email_backend': 'django.core.mail.backends.filebased.EmailBackend',
  490. }
  491. },
  492. By default, an instance of the email backend specified in
  493. :setting:`EMAIL_BACKEND` will be used.
  494. .. method:: send_mail(subject, message, *args, **kwargs)
  495. Sends emails to admin users. To customize this behavior, you can
  496. subclass the :class:`~django.utils.log.AdminEmailHandler` class and
  497. override this method.
  498. .. _Sentry: https://pypi.org/project/sentry/
  499. Filters
  500. -------
  501. Django provides some log filters in addition to those provided by the Python
  502. logging module.
  503. .. class:: CallbackFilter(callback)
  504. This filter accepts a callback function (which should accept a single
  505. argument, the record to be logged), and calls it for each record that
  506. passes through the filter. Handling of that record will not proceed if the
  507. callback returns False.
  508. For instance, to filter out :exc:`~django.http.UnreadablePostError`
  509. (raised when a user cancels an upload) from the admin emails, you would
  510. create a filter function::
  511. from django.http import UnreadablePostError
  512. def skip_unreadable_post(record):
  513. if record.exc_info:
  514. exc_type, exc_value = record.exc_info[:2]
  515. if isinstance(exc_value, UnreadablePostError):
  516. return False
  517. return True
  518. and then add it to your logging config:
  519. .. code-block:: python
  520. 'filters': {
  521. 'skip_unreadable_posts': {
  522. '()': 'django.utils.log.CallbackFilter',
  523. 'callback': skip_unreadable_post,
  524. }
  525. },
  526. 'handlers': {
  527. 'mail_admins': {
  528. 'level': 'ERROR',
  529. 'filters': ['skip_unreadable_posts'],
  530. 'class': 'django.utils.log.AdminEmailHandler'
  531. }
  532. },
  533. .. class:: RequireDebugFalse()
  534. This filter will only pass on records when settings.DEBUG is False.
  535. This filter is used as follows in the default :setting:`LOGGING`
  536. configuration to ensure that the :class:`AdminEmailHandler` only sends
  537. error emails to admins when :setting:`DEBUG` is ``False``:
  538. .. code-block:: python
  539. 'filters': {
  540. 'require_debug_false': {
  541. '()': 'django.utils.log.RequireDebugFalse',
  542. }
  543. },
  544. 'handlers': {
  545. 'mail_admins': {
  546. 'level': 'ERROR',
  547. 'filters': ['require_debug_false'],
  548. 'class': 'django.utils.log.AdminEmailHandler'
  549. }
  550. },
  551. .. class:: RequireDebugTrue()
  552. This filter is similar to :class:`RequireDebugFalse`, except that records are
  553. passed only when :setting:`DEBUG` is ``True``.
  554. .. _default-logging-configuration:
  555. Django's default logging configuration
  556. ======================================
  557. By default, Django configures the following logging:
  558. When :setting:`DEBUG` is ``True``:
  559. * The ``django`` logger sends messages in the ``django`` hierarchy (except
  560. ``django.server``) at the ``INFO`` level or higher to the console.
  561. When :setting:`DEBUG` is ``False``:
  562. * The ``django`` logger sends messages in the ``django`` hierarchy (except
  563. ``django.server``) with ``ERROR`` or ``CRITICAL`` level to
  564. :class:`AdminEmailHandler`.
  565. Independent of the value of :setting:`DEBUG`:
  566. * The :ref:`django-server-logger` logger sends messages at the ``INFO`` level
  567. or higher to the console.
  568. See also :ref:`Configuring logging <configuring-logging>` to learn how you can
  569. complement or replace this default logging configuration.