diff options
author | Vinay Sajip <vinay_sajip@yahoo.co.uk> | 2013-01-22 13:12:34 (GMT) |
---|---|---|
committer | Vinay Sajip <vinay_sajip@yahoo.co.uk> | 2013-01-22 13:12:34 (GMT) |
commit | f186911e247b287d555852ce73afb721f8eb79b9 (patch) | |
tree | 0ccd7e60f5f94ad14a2903b2683d36fd3f7051ec /Doc | |
parent | 52b3d34d1c8a976ae0c154e5aae8390b10510a8a (diff) | |
download | cpython-f186911e247b287d555852ce73afb721f8eb79b9.zip cpython-f186911e247b287d555852ce73afb721f8eb79b9.tar.gz cpython-f186911e247b287d555852ce73afb721f8eb79b9.tar.bz2 |
Updated logging HOWTO with a diagram.
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/howto/logging.rst | 10 | ||||
-rwxr-xr-x | Doc/howto/logging_flow.png | bin | 0 -> 49648 bytes |
2 files changed, 10 insertions, 0 deletions
diff --git a/Doc/howto/logging.rst b/Doc/howto/logging.rst index c2a13d9..79f1336 100644 --- a/Doc/howto/logging.rst +++ b/Doc/howto/logging.rst @@ -330,6 +330,9 @@ of components: loggers, handlers, filters, and formatters. to output. * Formatters specify the layout of log records in the final output. +Log event information is passed between loggers, handlers, filters and +formatters in a :class:`LogRecord` instance. + Logging is performed by calling methods on instances of the :class:`Logger` class (hereafter called :dfn:`loggers`). Each instance has a name, and they are conceptually arranged in a namespace hierarchy using dots (periods) as @@ -374,6 +377,13 @@ You can change this by passing a format string to :func:`basicConfig` with the *format* keyword argument. For all options regarding how a format string is constructed, see :ref:`formatter-objects`. +Logging Flow +^^^^^^^^^^^^ + +The flow of log event information in loggers and handlers is illustrated in the +following diagram. + +.. image:: logging_flow.png Loggers ^^^^^^^ diff --git a/Doc/howto/logging_flow.png b/Doc/howto/logging_flow.png Binary files differnew file mode 100755 index 0000000..a883823 --- /dev/null +++ b/Doc/howto/logging_flow.png |