logging.txt 23 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664
  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. Prior to Django 1.5, the :setting:`LOGGING` setting always overwrote the
  159. :ref:`default Django logging configuration <default-logging-configuration>`.
  160. From Django 1.5 forward, it is possible to get the project's logging
  161. configuration merged with Django's defaults, hence you can decide if you want to
  162. add to, or replace the existing configuration.
  163. If the ``disable_existing_loggers`` key in the :setting:`LOGGING` dictConfig is
  164. set to ``True`` (which is the default) the default configuration is completely
  165. overridden. Alternatively you can redefine some or all of the loggers by
  166. setting ``disable_existing_loggers`` to ``False``.
  167. Logging is configured as part of the general Django ``setup()`` function.
  168. Therefore, you can be certain that loggers are always ready for use in your
  169. project code.
  170. .. _dictConfig format: https://docs.python.org/library/logging.config.html#configuration-dictionary-schema
  171. Examples
  172. --------
  173. The full documentation for `dictConfig format`_ is the best source of
  174. information about logging configuration dictionaries. However, to give
  175. you a taste of what is possible, here are a couple examples.
  176. First, here's a simple configuration which writes all request logging from the
  177. :ref:`django-request-logger` logger to a local file::
  178. LOGGING = {
  179. 'version': 1,
  180. 'disable_existing_loggers': False,
  181. 'handlers': {
  182. 'file': {
  183. 'level': 'DEBUG',
  184. 'class': 'logging.FileHandler',
  185. 'filename': '/path/to/django/debug.log',
  186. },
  187. },
  188. 'loggers': {
  189. 'django.request': {
  190. 'handlers': ['file'],
  191. 'level': 'DEBUG',
  192. 'propagate': True,
  193. },
  194. },
  195. }
  196. If you use this example, be sure to change the ``'filename'`` path to a
  197. location that's writable by the user that's running the Django application.
  198. Second, here's an example of a fairly complex logging setup, configured using
  199. :func:`logging.config.dictConfig`::
  200. LOGGING = {
  201. 'version': 1,
  202. 'disable_existing_loggers': True,
  203. 'formatters': {
  204. 'verbose': {
  205. 'format': '%(levelname)s %(asctime)s %(module)s %(process)d %(thread)d %(message)s'
  206. },
  207. 'simple': {
  208. 'format': '%(levelname)s %(message)s'
  209. },
  210. },
  211. 'filters': {
  212. 'special': {
  213. '()': 'project.logging.SpecialFilter',
  214. 'foo': 'bar',
  215. }
  216. },
  217. 'handlers': {
  218. 'null': {
  219. 'level': 'DEBUG',
  220. 'class': 'logging.NullHandler',
  221. },
  222. 'console': {
  223. 'level': 'DEBUG',
  224. 'class': 'logging.StreamHandler',
  225. 'formatter': 'simple'
  226. },
  227. 'mail_admins': {
  228. 'level': 'ERROR',
  229. 'class': 'django.utils.log.AdminEmailHandler',
  230. 'filters': ['special']
  231. }
  232. },
  233. 'loggers': {
  234. 'django': {
  235. 'handlers': ['null'],
  236. 'propagate': True,
  237. 'level': 'INFO',
  238. },
  239. 'django.request': {
  240. 'handlers': ['mail_admins'],
  241. 'level': 'ERROR',
  242. 'propagate': False,
  243. },
  244. 'myproject.custom': {
  245. 'handlers': ['console', 'mail_admins'],
  246. 'level': 'INFO',
  247. 'filters': ['special']
  248. }
  249. }
  250. }
  251. This logging configuration does the following things:
  252. * Identifies the configuration as being in 'dictConfig version 1'
  253. format. At present, this is the only dictConfig format version.
  254. * Disables all existing logging configurations.
  255. * Defines two formatters:
  256. * ``simple``, that just outputs the log level name (e.g.,
  257. ``DEBUG``) and the log message.
  258. The ``format`` string is a normal Python formatting string
  259. describing the details that are to be output on each logging
  260. line. The full list of detail that can be output can be
  261. found in the `formatter documentation`_.
  262. * ``verbose``, that outputs the log level name, the log
  263. message, plus the time, process, thread and module that
  264. generate the log message.
  265. * Defines one filter -- ``project.logging.SpecialFilter``,
  266. using the alias ``special``. If this filter required additional
  267. arguments at time of construction, they can be provided as
  268. additional keys in the filter configuration dictionary. In this
  269. case, the argument ``foo`` will be given a value of ``bar`` when
  270. instantiating the ``SpecialFilter``.
  271. * Defines three handlers:
  272. * ``null``, a NullHandler, which will pass any ``DEBUG`` (or
  273. higher) message to ``/dev/null``.
  274. * ``console``, a StreamHandler, which will print any ``DEBUG``
  275. (or higher) message to stderr. This handler uses the ``simple`` output
  276. format.
  277. * ``mail_admins``, an AdminEmailHandler, which will email any
  278. ``ERROR`` (or higher) message to the site admins. This handler uses
  279. the ``special`` filter.
  280. * Configures three loggers:
  281. * ``django``, which passes all messages at ``INFO`` or higher
  282. to the ``null`` handler.
  283. * ``django.request``, which passes all ``ERROR`` messages to
  284. the ``mail_admins`` handler. In addition, this logger is
  285. marked to *not* propagate messages. This means that log
  286. messages written to ``django.request`` will not be handled
  287. by the ``django`` logger.
  288. * ``myproject.custom``, which passes all messages at ``INFO``
  289. or higher that also pass the ``special`` filter to two
  290. handlers -- the ``console``, and ``mail_admins``. This
  291. means that all ``INFO`` level messages (or higher) will be
  292. printed to the console; ``ERROR`` and ``CRITICAL``
  293. messages will also be output via email.
  294. .. _formatter documentation: https://docs.python.org/library/logging.html#formatter-objects
  295. Custom logging configuration
  296. ----------------------------
  297. If you don't want to use Python's dictConfig format to configure your
  298. logger, you can specify your own configuration scheme.
  299. The :setting:`LOGGING_CONFIG` setting defines the callable that will
  300. be used to configure Django's loggers. By default, it points at
  301. Python's :func:`logging.config.dictConfig()` function. However, if you want to
  302. use a different configuration process, you can use any other callable
  303. that takes a single argument. The contents of :setting:`LOGGING` will
  304. be provided as the value of that argument when logging is configured.
  305. Disabling logging configuration
  306. -------------------------------
  307. If you don't want to configure logging at all (or you want to manually
  308. configure logging using your own approach), you can set
  309. :setting:`LOGGING_CONFIG` to ``None``. This will disable the
  310. configuration process.
  311. .. note::
  312. Setting :setting:`LOGGING_CONFIG` to ``None`` only means that the
  313. configuration process is disabled, not logging itself. If you
  314. disable the configuration process, Django will still make logging
  315. calls, falling back to whatever default logging behavior is
  316. defined.
  317. Django's logging extensions
  318. ===========================
  319. Django provides a number of utilities to handle the unique
  320. requirements of logging in Web server environment.
  321. Loggers
  322. -------
  323. Django provides several built-in loggers.
  324. ``django``
  325. ~~~~~~~~~~
  326. ``django`` is the catch-all logger. No messages are posted directly to
  327. this logger.
  328. .. _django-request-logger:
  329. ``django.request``
  330. ~~~~~~~~~~~~~~~~~~
  331. Log messages related to the handling of requests. 5XX responses are
  332. raised as ``ERROR`` messages; 4XX responses are raised as ``WARNING``
  333. messages.
  334. Messages to this logger have the following extra context:
  335. * ``status_code``: The HTTP response code associated with the
  336. request.
  337. * ``request``: The request object that generated the logging
  338. message.
  339. .. _django-db-logger:
  340. ``django.db.backends``
  341. ~~~~~~~~~~~~~~~~~~~~~~
  342. Messages relating to the interaction of code with the database. For example,
  343. every application-level SQL statement executed by a request is logged at the
  344. ``DEBUG`` level to this logger.
  345. Messages to this logger have the following extra context:
  346. * ``duration``: The time taken to execute the SQL statement.
  347. * ``sql``: The SQL statement that was executed.
  348. * ``params``: The parameters that were used in the SQL call.
  349. For performance reasons, SQL logging is only enabled when
  350. ``settings.DEBUG`` is set to ``True``, regardless of the logging
  351. level or handlers that are installed.
  352. This logging does not include framework-level initialization (e.g.
  353. ``SET TIMEZONE``) or transaction management queries (e.g. ``BEGIN``,
  354. ``COMMIT``, and ``ROLLBACK``). Turn on query logging in your database if you
  355. wish to view all database queries.
  356. ``django.security.*``
  357. ~~~~~~~~~~~~~~~~~~~~~~
  358. The security loggers will receive messages on any occurrence of
  359. :exc:`~django.core.exceptions.SuspiciousOperation`. There is a sub-logger for
  360. each sub-type of SuspiciousOperation. The level of the log event depends on
  361. where the exception is handled. Most occurrences are logged as a warning, while
  362. any ``SuspiciousOperation`` that reaches the WSGI handler will be logged as an
  363. error. For example, when an HTTP ``Host`` header is included in a request from
  364. a client that does not match :setting:`ALLOWED_HOSTS`, Django will return a 400
  365. response, and an error message will be logged to the
  366. ``django.security.DisallowedHost`` logger.
  367. Only the parent ``django.security`` logger is configured by default, and all
  368. child loggers will propagate to the parent logger. The ``django.security``
  369. logger is configured the same as the ``django.request`` logger, and any error
  370. events will be mailed to admins. Requests resulting in a 400 response due to
  371. a ``SuspiciousOperation`` will not be logged to the ``django.request`` logger,
  372. but only to the ``django.security`` logger.
  373. To silence a particular type of SuspiciousOperation, you can override that
  374. specific logger following this example:
  375. .. code-block:: python
  376. 'loggers': {
  377. 'django.security.DisallowedHost': {
  378. 'handlers': ['null'],
  379. 'propagate': False,
  380. },
  381. },
  382. ``django.db.backends.schema``
  383. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  384. .. versionadded:: 1.7
  385. Logs the SQL queries that are executed during schema changes to the database by
  386. the :doc:`migrations framework </topics/migrations>`. Note that it won't log the
  387. queries executed by :class:`~django.db.migrations.operations.RunPython`.
  388. Handlers
  389. --------
  390. Django provides one log handler in addition to those provided by the
  391. Python logging module.
  392. .. class:: AdminEmailHandler(include_html=False, email_backend=None)
  393. This handler sends an email to the site admins for each log
  394. message it receives.
  395. If the log record contains a ``request`` attribute, the full details
  396. of the request will be included in the email.
  397. If the log record contains stack trace information, that stack
  398. trace will be included in the email.
  399. The ``include_html`` argument of ``AdminEmailHandler`` is used to
  400. control whether the traceback email includes an HTML attachment
  401. containing the full content of the debug Web page that would have been
  402. produced if :setting:`DEBUG` were ``True``. To set this value in your
  403. configuration, include it in the handler definition for
  404. ``django.utils.log.AdminEmailHandler``, like this:
  405. .. code-block:: python
  406. 'handlers': {
  407. 'mail_admins': {
  408. 'level': 'ERROR',
  409. 'class': 'django.utils.log.AdminEmailHandler',
  410. 'include_html': True,
  411. }
  412. },
  413. Note that this HTML version of the email contains a full traceback,
  414. with names and values of local variables at each level of the stack, plus
  415. the values of your Django settings. This information is potentially very
  416. sensitive, and you may not want to send it over email. Consider using
  417. something such as `Sentry`_ to get the best of both worlds -- the
  418. rich information of full tracebacks plus the security of *not* sending the
  419. information over email. You may also explicitly designate certain
  420. sensitive information to be filtered out of error reports -- learn more on
  421. :ref:`Filtering error reports<filtering-error-reports>`.
  422. By setting the ``email_backend`` argument of ``AdminEmailHandler``, the
  423. :ref:`email backend <topic-email-backends>` that is being used by the
  424. handler can be overridden, like this:
  425. .. code-block:: python
  426. 'handlers': {
  427. 'mail_admins': {
  428. 'level': 'ERROR',
  429. 'class': 'django.utils.log.AdminEmailHandler',
  430. 'email_backend': 'django.core.mail.backends.filebased.EmailBackend',
  431. }
  432. },
  433. By default, an instance of the email backend specified in
  434. :setting:`EMAIL_BACKEND` will be used.
  435. .. method:: send_mail(subject, message, *args, **kwargs)
  436. .. versionadded:: 1.8
  437. Sends emails to admin users. To customize this behavior, you can
  438. subclass the :class:`~django.utils.log.AdminEmailHandler` class and
  439. override this method.
  440. .. _Sentry: https://pypi.python.org/pypi/sentry
  441. Filters
  442. -------
  443. Django provides two log filters in addition to those provided by the Python
  444. logging module.
  445. .. class:: CallbackFilter(callback)
  446. This filter accepts a callback function (which should accept a single
  447. argument, the record to be logged), and calls it for each record that
  448. passes through the filter. Handling of that record will not proceed if the
  449. callback returns False.
  450. For instance, to filter out :exc:`~django.http.UnreadablePostError`
  451. (raised when a user cancels an upload) from the admin emails, you would
  452. create a filter function::
  453. from django.http import UnreadablePostError
  454. def skip_unreadable_post(record):
  455. if record.exc_info:
  456. exc_type, exc_value = record.exc_info[:2]
  457. if isinstance(exc_value, UnreadablePostError):
  458. return False
  459. return True
  460. and then add it to your logging config:
  461. .. code-block:: python
  462. 'filters': {
  463. 'skip_unreadable_posts': {
  464. '()': 'django.utils.log.CallbackFilter',
  465. 'callback': skip_unreadable_post,
  466. }
  467. },
  468. 'handlers': {
  469. 'mail_admins': {
  470. 'level': 'ERROR',
  471. 'filters': ['skip_unreadable_posts'],
  472. 'class': 'django.utils.log.AdminEmailHandler'
  473. }
  474. },
  475. .. class:: RequireDebugFalse()
  476. This filter will only pass on records when settings.DEBUG is False.
  477. This filter is used as follows in the default :setting:`LOGGING`
  478. configuration to ensure that the :class:`AdminEmailHandler` only sends
  479. error emails to admins when :setting:`DEBUG` is ``False``:
  480. .. code-block:: python
  481. 'filters': {
  482. 'require_debug_false': {
  483. '()': 'django.utils.log.RequireDebugFalse',
  484. }
  485. },
  486. 'handlers': {
  487. 'mail_admins': {
  488. 'level': 'ERROR',
  489. 'filters': ['require_debug_false'],
  490. 'class': 'django.utils.log.AdminEmailHandler'
  491. }
  492. },
  493. .. class:: RequireDebugTrue()
  494. This filter is similar to :class:`RequireDebugFalse`, except that records are
  495. passed only when :setting:`DEBUG` is ``True``.
  496. .. _default-logging-configuration:
  497. Django's default logging configuration
  498. ======================================
  499. By default, Django configures the ``django.request`` logger so that all messages
  500. with ``ERROR`` or ``CRITICAL`` level are sent to :class:`AdminEmailHandler`, as
  501. long as the :setting:`DEBUG` setting is set to ``False``.
  502. All messages reaching the ``django`` catch-all logger when :setting:`DEBUG` is
  503. ``True`` are sent to the console. They are simply discarded (sent to
  504. ``NullHandler``) when :setting:`DEBUG` is ``False``.
  505. See also :ref:`Configuring logging <configuring-logging>` to learn how you can
  506. complement or replace this default logging configuration.