2007-08-15 11:28:22 -03:00
|
|
|
:mod:`logging` --- Logging facility for Python
|
|
|
|
==============================================
|
|
|
|
|
|
|
|
.. module:: logging
|
2010-12-12 18:47:13 -04:00
|
|
|
:synopsis: Flexible event logging system for applications.
|
2007-08-15 11:28:22 -03:00
|
|
|
|
|
|
|
.. moduleauthor:: Vinay Sajip <vinay_sajip@red-dove.com>
|
|
|
|
.. sectionauthor:: Vinay Sajip <vinay_sajip@red-dove.com>
|
|
|
|
|
2016-06-11 16:02:54 -03:00
|
|
|
**Source code:** :source:`Lib/logging/__init__.py`
|
2007-08-15 11:28:22 -03:00
|
|
|
|
|
|
|
.. index:: pair: Errors; logging
|
|
|
|
|
2010-12-19 08:56:57 -04:00
|
|
|
.. sidebar:: Important
|
|
|
|
|
2010-12-19 09:41:26 -04:00
|
|
|
This page contains the API reference information. For tutorial
|
|
|
|
information and discussion of more advanced topics, see
|
2010-12-19 08:56:57 -04:00
|
|
|
|
|
|
|
* :ref:`Basic Tutorial <logging-basic-tutorial>`
|
|
|
|
* :ref:`Advanced Tutorial <logging-advanced-tutorial>`
|
|
|
|
* :ref:`Logging Cookbook <logging-cookbook>`
|
|
|
|
|
2013-09-05 19:01:07 -03:00
|
|
|
--------------
|
|
|
|
|
2010-12-12 18:47:13 -04:00
|
|
|
This module defines functions and classes which implement a flexible event
|
2010-12-12 18:30:17 -04:00
|
|
|
logging system for applications and libraries.
|
2007-08-15 11:28:22 -03:00
|
|
|
|
2010-12-12 09:20:55 -04:00
|
|
|
The key benefit of having the logging API provided by a standard library module
|
|
|
|
is that all Python modules can participate in logging, so your application log
|
|
|
|
can include your own messages integrated with messages from third-party
|
|
|
|
modules.
|
2007-08-15 11:28:22 -03:00
|
|
|
|
2010-12-19 08:56:57 -04:00
|
|
|
The module provides a lot of functionality and flexibility. If you are
|
|
|
|
unfamiliar with logging, the best way to get to grips with it is to see the
|
2010-12-19 09:41:26 -04:00
|
|
|
tutorials (see the links on the right).
|
2007-12-04 15:30:01 -04:00
|
|
|
|
2010-12-19 08:56:57 -04:00
|
|
|
The basic classes defined by the module, together with their functions, are
|
|
|
|
listed below.
|
2010-12-14 15:40:21 -04:00
|
|
|
|
|
|
|
* Loggers expose the interface that application code directly uses.
|
|
|
|
* Handlers send the log records (created by loggers) to the appropriate
|
|
|
|
destination.
|
|
|
|
* Filters provide a finer grained facility for determining which log records
|
|
|
|
to output.
|
|
|
|
* Formatters specify the layout of log records in the final output.
|
2010-12-12 09:20:55 -04:00
|
|
|
|
2007-12-04 15:30:01 -04:00
|
|
|
|
2010-12-19 08:56:57 -04:00
|
|
|
.. _logger:
|
Merged revisions 80605-80609,80642-80646,80651-80652,80674,80684-80686,80748,80852,80854,80870,80872-80873,80907,80915-80916,80951-80952,80976-80977,80985,81038-81040,81042,81053,81070,81104-81105,81114,81125,81245,81285,81402,81463,81516,81562-81563,81567,81593,81635,81680-81681,81684,81801,81888,81931-81933,81939-81942,81963,81984,81991,82120,82188,82264-82267 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk
........
r80605 | andrew.kuchling | 2010-04-28 19:22:16 -0500 (Wed, 28 Apr 2010) | 1 line
Add various items
........
r80606 | andrew.kuchling | 2010-04-28 20:44:30 -0500 (Wed, 28 Apr 2010) | 6 lines
Fix doubled 'the'.
Markup fixes to use :exc:, :option: in a few places.
(Glitch: unittest.main's -c ends up a link to the Python
interpreter's -c option. Should we skip using :option: for that
switch, or disable the auto-linking somehow?)
........
r80607 | andrew.kuchling | 2010-04-28 20:45:41 -0500 (Wed, 28 Apr 2010) | 1 line
Add various unittest items
........
r80608 | benjamin.peterson | 2010-04-28 22:18:05 -0500 (Wed, 28 Apr 2010) | 1 line
update pypy description
........
r80609 | benjamin.peterson | 2010-04-28 22:30:59 -0500 (Wed, 28 Apr 2010) | 1 line
update pypy url
........
r80642 | andrew.kuchling | 2010-04-29 19:49:09 -0500 (Thu, 29 Apr 2010) | 1 line
Always add space after RFC; reword paragraph
........
r80643 | andrew.kuchling | 2010-04-29 19:52:31 -0500 (Thu, 29 Apr 2010) | 6 lines
Reword paragraph to make its meaning clearer.
Antoine Pitrou: is my version of the paragraph still correct?
R. David Murray: is this more understandable than the previous version?
........
r80644 | andrew.kuchling | 2010-04-29 20:02:15 -0500 (Thu, 29 Apr 2010) | 1 line
Fix typos
........
r80645 | andrew.kuchling | 2010-04-29 20:32:47 -0500 (Thu, 29 Apr 2010) | 1 line
Markup fix; clarify by adding 'in that order'
........
r80646 | andrew.kuchling | 2010-04-29 20:33:40 -0500 (Thu, 29 Apr 2010) | 1 line
Add various items; rearrange unittest section a bit
........
r80651 | andrew.kuchling | 2010-04-30 08:46:55 -0500 (Fri, 30 Apr 2010) | 1 line
Minor grammar re-wording
........
r80652 | andrew.kuchling | 2010-04-30 08:47:34 -0500 (Fri, 30 Apr 2010) | 1 line
Add item
........
r80674 | andrew.kuchling | 2010-04-30 20:19:16 -0500 (Fri, 30 Apr 2010) | 1 line
Add various items
........
r80684 | andrew.kuchling | 2010-05-01 07:05:52 -0500 (Sat, 01 May 2010) | 1 line
Minor grammar fix
........
r80685 | andrew.kuchling | 2010-05-01 07:06:51 -0500 (Sat, 01 May 2010) | 1 line
Describe memoryview
........
r80686 | antoine.pitrou | 2010-05-01 07:16:39 -0500 (Sat, 01 May 2010) | 4 lines
Fix attribution. Travis didn't do much and he did a bad work.
(yes, this is a sensitive subject, sorry)
........
r80748 | andrew.kuchling | 2010-05-03 20:24:22 -0500 (Mon, 03 May 2010) | 1 line
Add some more items; the urlparse change is added twice
........
r80852 | andrew.kuchling | 2010-05-05 20:09:47 -0500 (Wed, 05 May 2010) | 1 line
Reword paragraph; fix filename, which should be pyconfig.h
........
r80854 | andrew.kuchling | 2010-05-05 20:10:56 -0500 (Wed, 05 May 2010) | 1 line
Add various items
........
r80870 | andrew.kuchling | 2010-05-06 09:14:09 -0500 (Thu, 06 May 2010) | 1 line
Describe ElementTree 1.3; rearrange new-module sections; describe dict views as sets; small edits and items
........
r80872 | andrew.kuchling | 2010-05-06 12:21:59 -0500 (Thu, 06 May 2010) | 1 line
Add 2 items; record ideas for two initial sections; clarify wording
........
r80873 | andrew.kuchling | 2010-05-06 12:27:57 -0500 (Thu, 06 May 2010) | 1 line
Change section title; point to unittest2
........
r80907 | andrew.kuchling | 2010-05-06 20:45:14 -0500 (Thu, 06 May 2010) | 1 line
Add a new section on the development plan; add an item
........
r80915 | antoine.pitrou | 2010-05-07 05:15:51 -0500 (Fri, 07 May 2010) | 3 lines
Fix some markup and a class name. Also, wrap a long line.
........
r80916 | andrew.kuchling | 2010-05-07 06:30:47 -0500 (Fri, 07 May 2010) | 1 line
Re-word text
........
r80951 | andrew.kuchling | 2010-05-07 20:15:26 -0500 (Fri, 07 May 2010) | 1 line
Add two items
........
r80952 | andrew.kuchling | 2010-05-07 20:35:55 -0500 (Fri, 07 May 2010) | 1 line
Get accents correct
........
r80976 | andrew.kuchling | 2010-05-08 08:28:03 -0500 (Sat, 08 May 2010) | 1 line
Add logging.dictConfig example; give up on writing a Ttk example
........
r80977 | andrew.kuchling | 2010-05-08 08:29:46 -0500 (Sat, 08 May 2010) | 1 line
Markup fixes
........
r80985 | andrew.kuchling | 2010-05-08 10:39:46 -0500 (Sat, 08 May 2010) | 7 lines
Write summary of the 2.7 release; rewrite the future section some more;
mention PYTHONWARNINGS env. var; tweak some examples for readability.
And with this commit, the "What's New" is done... except for a
complete read-through to polish the text, and fixing any reported errors,
but those tasks can easily wait until after beta2.
........
r81038 | benjamin.peterson | 2010-05-09 16:09:40 -0500 (Sun, 09 May 2010) | 1 line
finish clause
........
r81039 | andrew.kuchling | 2010-05-10 09:18:27 -0500 (Mon, 10 May 2010) | 1 line
Markup fix; re-word a sentence
........
r81040 | andrew.kuchling | 2010-05-10 09:20:12 -0500 (Mon, 10 May 2010) | 1 line
Use title case
........
r81042 | andrew.kuchling | 2010-05-10 10:03:35 -0500 (Mon, 10 May 2010) | 1 line
Link to unittest2 article
........
r81053 | florent.xicluna | 2010-05-10 14:59:22 -0500 (Mon, 10 May 2010) | 2 lines
Add a link on maketrans().
........
r81070 | andrew.kuchling | 2010-05-10 18:13:41 -0500 (Mon, 10 May 2010) | 1 line
Fix typo
........
r81104 | andrew.kuchling | 2010-05-11 19:38:44 -0500 (Tue, 11 May 2010) | 1 line
Revision pass: lots of edits, typo fixes, rearrangements
........
r81105 | andrew.kuchling | 2010-05-11 19:40:47 -0500 (Tue, 11 May 2010) | 1 line
Let's call this done
........
r81114 | andrew.kuchling | 2010-05-12 08:56:07 -0500 (Wed, 12 May 2010) | 1 line
Grammar fix
........
r81125 | andrew.kuchling | 2010-05-12 13:56:48 -0500 (Wed, 12 May 2010) | 1 line
#8696: add documentation for logging.config.dictConfig (PEP 391)
........
r81245 | andrew.kuchling | 2010-05-16 18:31:16 -0500 (Sun, 16 May 2010) | 1 line
Add cross-reference to later section
........
r81285 | vinay.sajip | 2010-05-18 03:16:27 -0500 (Tue, 18 May 2010) | 1 line
Fixed minor typo in ReST markup.
........
r81402 | vinay.sajip | 2010-05-21 12:41:34 -0500 (Fri, 21 May 2010) | 1 line
Updated logging documentation with more dictConfig information.
........
r81463 | georg.brandl | 2010-05-22 03:17:23 -0500 (Sat, 22 May 2010) | 1 line
#8785: less confusing description of regex.find*.
........
r81516 | andrew.kuchling | 2010-05-25 08:34:08 -0500 (Tue, 25 May 2010) | 1 line
Add three items
........
r81562 | andrew.kuchling | 2010-05-27 08:22:53 -0500 (Thu, 27 May 2010) | 1 line
Rewrite wxWidgets section
........
r81563 | andrew.kuchling | 2010-05-27 08:30:09 -0500 (Thu, 27 May 2010) | 1 line
Remove top-level 'General Questions' section, pushing up the questions it contains
........
r81567 | andrew.kuchling | 2010-05-27 16:29:59 -0500 (Thu, 27 May 2010) | 1 line
Add item
........
r81593 | georg.brandl | 2010-05-29 03:46:18 -0500 (Sat, 29 May 2010) | 1 line
#8616: add new turtle demo "nim".
........
r81635 | georg.brandl | 2010-06-01 02:25:23 -0500 (Tue, 01 Jun 2010) | 1 line
Put docs for RegexObject.search() before RegexObject.match() to mirror re.search() and re.match() order.
........
r81680 | vinay.sajip | 2010-06-03 17:34:42 -0500 (Thu, 03 Jun 2010) | 1 line
Issue #8890: Documentation changed to avoid reference to temporary files.
........
r81681 | sean.reifschneider | 2010-06-03 20:51:26 -0500 (Thu, 03 Jun 2010) | 2 lines
Issue8810: Clearing up docstring for tzinfo.utcoffset.
........
r81684 | vinay.sajip | 2010-06-04 08:41:02 -0500 (Fri, 04 Jun 2010) | 1 line
Issue #8890: Documentation changed to avoid reference to temporary files - other cases covered.
........
r81801 | andrew.kuchling | 2010-06-07 08:38:40 -0500 (Mon, 07 Jun 2010) | 1 line
#8875: Remove duplicated paragraph
........
r81888 | andrew.kuchling | 2010-06-10 20:54:58 -0500 (Thu, 10 Jun 2010) | 1 line
Add a few more items
........
r81931 | georg.brandl | 2010-06-12 01:26:54 -0500 (Sat, 12 Jun 2010) | 1 line
Fix punctuation.
........
r81932 | georg.brandl | 2010-06-12 01:28:58 -0500 (Sat, 12 Jun 2010) | 1 line
Document that an existing directory raises in mkdir().
........
r81933 | georg.brandl | 2010-06-12 01:45:33 -0500 (Sat, 12 Jun 2010) | 1 line
Update version in README.
........
r81939 | georg.brandl | 2010-06-12 04:45:01 -0500 (Sat, 12 Jun 2010) | 1 line
Use newer toctree syntax.
........
r81940 | georg.brandl | 2010-06-12 04:45:28 -0500 (Sat, 12 Jun 2010) | 1 line
Add document on how to build.
........
r81941 | georg.brandl | 2010-06-12 04:45:58 -0500 (Sat, 12 Jun 2010) | 1 line
Fix gratuitous indentation.
........
r81942 | georg.brandl | 2010-06-12 04:46:03 -0500 (Sat, 12 Jun 2010) | 1 line
Update README.
........
r81963 | andrew.kuchling | 2010-06-12 15:00:55 -0500 (Sat, 12 Jun 2010) | 1 line
Grammar fix
........
r81984 | georg.brandl | 2010-06-14 10:58:39 -0500 (Mon, 14 Jun 2010) | 1 line
#8993: fix reference.
........
r81991 | andrew.kuchling | 2010-06-14 19:38:58 -0500 (Mon, 14 Jun 2010) | 1 line
Add another bunch of items
........
r82120 | andrew.kuchling | 2010-06-20 16:45:45 -0500 (Sun, 20 Jun 2010) | 1 line
Note that Python 3.x isn't covered; add forward ref. for UTF-8; note error in 2.5 and up
........
r82188 | benjamin.peterson | 2010-06-23 19:02:46 -0500 (Wed, 23 Jun 2010) | 1 line
remove reverted changed
........
r82264 | georg.brandl | 2010-06-27 05:47:47 -0500 (Sun, 27 Jun 2010) | 1 line
Confusing punctuation.
........
r82265 | georg.brandl | 2010-06-27 05:49:23 -0500 (Sun, 27 Jun 2010) | 1 line
Use designated syntax for optional grammar element.
........
r82266 | georg.brandl | 2010-06-27 05:51:44 -0500 (Sun, 27 Jun 2010) | 1 line
Fix URL.
........
r82267 | georg.brandl | 2010-06-27 05:55:38 -0500 (Sun, 27 Jun 2010) | 1 line
Two typos.
........
2010-06-27 19:32:30 -03:00
|
|
|
|
2010-12-19 08:56:57 -04:00
|
|
|
Logger Objects
|
2007-12-04 15:30:01 -04:00
|
|
|
--------------
|
|
|
|
|
2019-06-19 07:46:53 -03:00
|
|
|
Loggers have the following attributes and methods. Note that Loggers should
|
|
|
|
*NEVER* be instantiated directly, but always through the module-level function
|
2012-04-10 15:59:50 -03:00
|
|
|
``logging.getLogger(name)``. Multiple calls to :func:`getLogger` with the same
|
|
|
|
name will always return a reference to the same Logger object.
|
|
|
|
|
|
|
|
The ``name`` is potentially a period-separated hierarchical value, like
|
|
|
|
``foo.bar.baz`` (though it could also be just plain ``foo``, for example).
|
|
|
|
Loggers that are further down in the hierarchical list are children of loggers
|
|
|
|
higher up in the list. For example, given a logger with a name of ``foo``,
|
|
|
|
loggers with names of ``foo.bar``, ``foo.bar.baz``, and ``foo.bam`` are all
|
|
|
|
descendants of ``foo``. The logger name hierarchy is analogous to the Python
|
|
|
|
package hierarchy, and identical to it if you organise your loggers on a
|
|
|
|
per-module basis using the recommended construction
|
|
|
|
``logging.getLogger(__name__)``. That's because in a module, ``__name__``
|
|
|
|
is the module's name in the Python package namespace.
|
|
|
|
|
2010-09-08 07:46:15 -03:00
|
|
|
|
2010-12-19 08:56:57 -04:00
|
|
|
.. class:: Logger
|
2007-08-15 11:28:22 -03:00
|
|
|
|
2017-05-07 15:40:18 -03:00
|
|
|
.. attribute:: Logger.propagate
|
2007-08-15 11:28:22 -03:00
|
|
|
|
2017-05-12 05:38:13 -03:00
|
|
|
If this attribute evaluates to true, events logged to this logger will be
|
|
|
|
passed to the handlers of higher level (ancestor) loggers, in addition to
|
|
|
|
any handlers attached to this logger. Messages are passed directly to the
|
|
|
|
ancestor loggers' handlers - neither the level nor filters of the ancestor
|
|
|
|
loggers in question are considered.
|
2011-11-23 04:54:22 -04:00
|
|
|
|
2017-05-07 15:40:18 -03:00
|
|
|
If this evaluates to false, logging messages are not passed to the handlers
|
|
|
|
of ancestor loggers.
|
2011-11-23 04:54:22 -04:00
|
|
|
|
2017-05-07 15:40:18 -03:00
|
|
|
The constructor sets this attribute to ``True``.
|
2007-08-15 11:28:22 -03:00
|
|
|
|
2017-05-07 15:40:18 -03:00
|
|
|
.. note:: If you attach a handler to a logger *and* one or more of its
|
|
|
|
ancestors, it may emit the same record multiple times. In general, you
|
|
|
|
should not need to attach a handler to more than one logger - if you just
|
|
|
|
attach it to the appropriate logger which is highest in the logger
|
|
|
|
hierarchy, then it will see all events logged by all descendant loggers,
|
|
|
|
provided that their propagate setting is left set to ``True``. A common
|
|
|
|
scenario is to attach handlers only to the root logger, and to let
|
|
|
|
propagation take care of the rest.
|
2007-08-15 11:28:22 -03:00
|
|
|
|
2017-12-09 07:09:04 -04:00
|
|
|
.. method:: Logger.setLevel(level)
|
2007-08-15 11:28:22 -03:00
|
|
|
|
2017-12-09 07:09:04 -04:00
|
|
|
Sets the threshold for this logger to *level*. Logging messages which are less
|
|
|
|
severe than *level* will be ignored; logging messages which have severity *level*
|
2017-07-06 13:51:28 -03:00
|
|
|
or higher will be emitted by whichever handler or handlers service this logger,
|
2017-12-09 07:09:04 -04:00
|
|
|
unless a handler's level has been set to a higher severity level than *level*.
|
2017-07-06 13:51:28 -03:00
|
|
|
|
|
|
|
When a logger is created, the level is set to :const:`NOTSET` (which causes
|
|
|
|
all messages to be processed when the logger is the root logger, or delegation
|
|
|
|
to the parent when the logger is a non-root logger). Note that the root logger
|
|
|
|
is created with level :const:`WARNING`.
|
Merged revisions 68450,68480-68481,68493,68495,68501,68512,68514-68515,68534-68536,68552,68563,68570-68572,68575,68582,68596,68623-68624,68628 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk
........
r68450 | jeffrey.yasskin | 2009-01-09 10:47:07 -0600 (Fri, 09 Jan 2009) | 3 lines
Fix issue 4884, preventing a crash in the socket code when python is compiled
with llvm-gcc and run with a glibc <2.10.
........
r68480 | vinay.sajip | 2009-01-10 07:38:04 -0600 (Sat, 10 Jan 2009) | 1 line
Minor documentation changes cross-referencing NullHandler to the documentation on configuring logging in a library.
........
r68481 | vinay.sajip | 2009-01-10 07:42:04 -0600 (Sat, 10 Jan 2009) | 1 line
Corrected an incorrect self-reference.
........
r68493 | benjamin.peterson | 2009-01-10 11:18:55 -0600 (Sat, 10 Jan 2009) | 1 line
rewrite verbose conditionals
........
r68495 | benjamin.peterson | 2009-01-10 11:36:44 -0600 (Sat, 10 Jan 2009) | 1 line
tp_iter only exists with Py_TPFLAGS_HAVE_ITER #4901
........
r68501 | vinay.sajip | 2009-01-10 13:22:57 -0600 (Sat, 10 Jan 2009) | 1 line
Corrected minor typo and added .currentmodule directives to fix missing cross-references.
........
r68512 | benjamin.peterson | 2009-01-10 16:42:10 -0600 (Sat, 10 Jan 2009) | 1 line
make tests fail if they can't be imported
........
r68514 | benjamin.peterson | 2009-01-10 17:41:59 -0600 (Sat, 10 Jan 2009) | 1 line
move seealso to a more appropiate place
........
r68515 | benjamin.peterson | 2009-01-10 17:49:08 -0600 (Sat, 10 Jan 2009) | 1 line
macos 9 isn't supported
........
r68534 | gregory.p.smith | 2009-01-11 11:53:33 -0600 (Sun, 11 Jan 2009) | 2 lines
correct email address
........
r68535 | gregory.p.smith | 2009-01-11 11:57:54 -0600 (Sun, 11 Jan 2009) | 9 lines
Update the documentation for binascii and zlib crc32/adler32 functions
to better describe the signed vs unsigned return value behavior on
different platforms and versions of python. Mention the workaround to
make them all return the same thing by using & 0xffffffff.
Fixes issue4903.
Also needs to be merged into release26-maint, release30-maint, & py3k.
........
r68536 | benjamin.peterson | 2009-01-11 13:48:15 -0600 (Sun, 11 Jan 2009) | 1 line
add email addresses
........
r68552 | vinay.sajip | 2009-01-12 14:36:18 -0600 (Mon, 12 Jan 2009) | 1 line
Minor changes/corrections in markup.
........
r68563 | benjamin.peterson | 2009-01-12 19:49:10 -0600 (Mon, 12 Jan 2009) | 1 line
small logic correction
........
r68570 | raymond.hettinger | 2009-01-13 03:08:32 -0600 (Tue, 13 Jan 2009) | 5 lines
Issue 4922: Incorrect comments for MutableSet.add() and MutableSet.discard().
Needs to be backported to 2.6 and forward ported to 3.0 and 3.1.
........
r68571 | armin.ronacher | 2009-01-13 05:52:23 -0600 (Tue, 13 Jan 2009) | 3 lines
ast.literal_eval can properly evaluate complex numbers now. This fixes issue4907.
........
r68572 | andrew.kuchling | 2009-01-13 07:40:54 -0600 (Tue, 13 Jan 2009) | 1 line
Note that first coord. is left alone
........
r68575 | thomas.heller | 2009-01-13 11:32:28 -0600 (Tue, 13 Jan 2009) | 1 line
Fix refcount leak in error cases. Bug found by coverity.
........
r68582 | georg.brandl | 2009-01-13 16:14:01 -0600 (Tue, 13 Jan 2009) | 2 lines
Use assertRaises.
........
r68596 | amaury.forgeotdarc | 2009-01-13 17:39:22 -0600 (Tue, 13 Jan 2009) | 3 lines
#1162154: inspect.getmembers() now skips attributes that raise AttributeError,
e.g. a __slots__ attribute which has not been set.
........
r68623 | vinay.sajip | 2009-01-15 16:48:13 -0600 (Thu, 15 Jan 2009) | 1 line
Made minor changes/corrections in markup. Added a couple of section headings.
........
r68624 | vinay.sajip | 2009-01-15 17:04:47 -0600 (Thu, 15 Jan 2009) | 1 line
Minor changes/corrections in markup.
........
r68628 | benjamin.peterson | 2009-01-15 20:55:24 -0600 (Thu, 15 Jan 2009) | 1 line
compare with == not is #4946
........
2009-01-15 23:54:08 -04:00
|
|
|
|
2017-05-07 15:40:18 -03:00
|
|
|
The term 'delegation to the parent' means that if a logger has a level of
|
|
|
|
NOTSET, its chain of ancestor loggers is traversed until either an ancestor with
|
|
|
|
a level other than NOTSET is found, or the root is reached.
|
2007-08-15 11:28:22 -03:00
|
|
|
|
2017-05-07 15:40:18 -03:00
|
|
|
If an ancestor is found with a level other than NOTSET, then that ancestor's
|
|
|
|
level is treated as the effective level of the logger where the ancestor search
|
|
|
|
began, and is used to determine how a logging event is handled.
|
2007-08-15 11:28:22 -03:00
|
|
|
|
2017-05-07 15:40:18 -03:00
|
|
|
If the root is reached, and it has a level of NOTSET, then all messages will be
|
|
|
|
processed. Otherwise, the root's level will be used as the effective level.
|
2007-08-15 11:28:22 -03:00
|
|
|
|
2017-05-07 15:40:18 -03:00
|
|
|
See :ref:`levels` for a list of levels.
|
2013-12-19 07:50:24 -04:00
|
|
|
|
2017-05-07 15:40:18 -03:00
|
|
|
.. versionchanged:: 3.2
|
2017-12-09 07:09:04 -04:00
|
|
|
The *level* parameter now accepts a string representation of the
|
2017-05-07 15:40:18 -03:00
|
|
|
level such as 'INFO' as an alternative to the integer constants
|
|
|
|
such as :const:`INFO`. Note, however, that levels are internally stored
|
|
|
|
as integers, and methods such as e.g. :meth:`getEffectiveLevel` and
|
|
|
|
:meth:`isEnabledFor` will return/expect to be passed integers.
|
2012-01-14 16:46:17 -04:00
|
|
|
|
2007-08-15 11:28:22 -03:00
|
|
|
|
2019-10-04 04:55:14 -03:00
|
|
|
.. method:: Logger.isEnabledFor(level)
|
2007-08-15 11:28:22 -03:00
|
|
|
|
2019-10-04 04:55:14 -03:00
|
|
|
Indicates if a message of severity *level* would be processed by this logger.
|
2017-05-07 15:40:18 -03:00
|
|
|
This method checks first the module-level level set by
|
2019-10-04 04:55:14 -03:00
|
|
|
``logging.disable(level)`` and then the logger's effective level as determined
|
2017-05-07 15:40:18 -03:00
|
|
|
by :meth:`getEffectiveLevel`.
|
2007-08-15 11:28:22 -03:00
|
|
|
|
|
|
|
|
2017-05-07 15:40:18 -03:00
|
|
|
.. method:: Logger.getEffectiveLevel()
|
2007-08-15 11:28:22 -03:00
|
|
|
|
2017-05-07 15:40:18 -03:00
|
|
|
Indicates the effective level for this logger. If a value other than
|
|
|
|
:const:`NOTSET` has been set using :meth:`setLevel`, it is returned. Otherwise,
|
|
|
|
the hierarchy is traversed towards the root until a value other than
|
|
|
|
:const:`NOTSET` is found, and that value is returned. The value returned is
|
|
|
|
an integer, typically one of :const:`logging.DEBUG`, :const:`logging.INFO`
|
|
|
|
etc.
|
2007-08-15 11:28:22 -03:00
|
|
|
|
|
|
|
|
2017-05-07 15:40:18 -03:00
|
|
|
.. method:: Logger.getChild(suffix)
|
2010-12-03 07:50:38 -04:00
|
|
|
|
2017-05-07 15:40:18 -03:00
|
|
|
Returns a logger which is a descendant to this logger, as determined by the suffix.
|
|
|
|
Thus, ``logging.getLogger('abc').getChild('def.ghi')`` would return the same
|
|
|
|
logger as would be returned by ``logging.getLogger('abc.def.ghi')``. This is a
|
|
|
|
convenience method, useful when the parent logger is named using e.g. ``__name__``
|
|
|
|
rather than a literal string.
|
2010-12-03 07:50:38 -04:00
|
|
|
|
2017-05-07 15:40:18 -03:00
|
|
|
.. versionadded:: 3.2
|
2010-12-03 07:50:38 -04:00
|
|
|
|
|
|
|
|
2017-05-07 15:40:18 -03:00
|
|
|
.. method:: Logger.debug(msg, *args, **kwargs)
|
2007-08-15 11:28:22 -03:00
|
|
|
|
2017-05-07 15:40:18 -03:00
|
|
|
Logs a message with level :const:`DEBUG` on this logger. The *msg* is the
|
|
|
|
message format string, and the *args* are the arguments which are merged into
|
|
|
|
*msg* using the string formatting operator. (Note that this means that you can
|
|
|
|
use keywords in the format string, together with a single dictionary argument.)
|
2020-03-24 13:48:32 -03:00
|
|
|
No % formatting operation is performed on *msg* when no *args* are supplied.
|
2007-08-15 11:28:22 -03:00
|
|
|
|
2018-06-05 13:24:18 -03:00
|
|
|
There are four keyword arguments in *kwargs* which are inspected:
|
|
|
|
*exc_info*, *stack_info*, *stacklevel* and *extra*.
|
2014-09-14 17:29:11 -03:00
|
|
|
|
2017-05-07 15:40:18 -03:00
|
|
|
If *exc_info* does not evaluate as false, it causes exception information to be
|
|
|
|
added to the logging message. If an exception tuple (in the format returned by
|
|
|
|
:func:`sys.exc_info`) or an exception instance is provided, it is used;
|
|
|
|
otherwise, :func:`sys.exc_info` is called to get the exception information.
|
2007-08-15 11:28:22 -03:00
|
|
|
|
2017-05-07 15:40:18 -03:00
|
|
|
The second optional keyword argument is *stack_info*, which defaults to
|
|
|
|
``False``. If true, stack information is added to the logging
|
|
|
|
message, including the actual logging call. Note that this is not the same
|
|
|
|
stack information as that displayed through specifying *exc_info*: The
|
|
|
|
former is stack frames from the bottom of the stack up to the logging call
|
|
|
|
in the current thread, whereas the latter is information about stack frames
|
|
|
|
which have been unwound, following an exception, while searching for
|
|
|
|
exception handlers.
|
2010-11-14 17:33:04 -04:00
|
|
|
|
2017-05-07 15:40:18 -03:00
|
|
|
You can specify *stack_info* independently of *exc_info*, e.g. to just show
|
|
|
|
how you got to a certain point in your code, even when no exceptions were
|
2018-04-08 13:18:04 -03:00
|
|
|
raised. The stack frames are printed following a header line which says:
|
|
|
|
|
|
|
|
.. code-block:: none
|
2010-11-14 17:33:04 -04:00
|
|
|
|
2017-05-07 15:40:18 -03:00
|
|
|
Stack (most recent call last):
|
2010-11-14 17:33:04 -04:00
|
|
|
|
2017-05-07 15:40:18 -03:00
|
|
|
This mimics the ``Traceback (most recent call last):`` which is used when
|
|
|
|
displaying exception frames.
|
2010-11-14 17:33:04 -04:00
|
|
|
|
2018-06-05 13:24:18 -03:00
|
|
|
The third optional keyword argument is *stacklevel*, which defaults to ``1``.
|
|
|
|
If greater than 1, the corresponding number of stack frames are skipped
|
|
|
|
when computing the line number and function name set in the :class:`LogRecord`
|
|
|
|
created for the logging event. This can be used in logging helpers so that
|
|
|
|
the function name, filename and line number recorded are not the information
|
|
|
|
for the helper function/method, but rather its caller. The name of this
|
|
|
|
parameter mirrors the equivalent one in the :mod:`warnings` module.
|
|
|
|
|
|
|
|
The fourth keyword argument is *extra* which can be used to pass a
|
|
|
|
dictionary which is used to populate the __dict__ of the :class:`LogRecord`
|
|
|
|
created for the logging event with user-defined attributes. These custom
|
|
|
|
attributes can then be used as you like. For example, they could be
|
|
|
|
incorporated into logged messages. For example::
|
2007-08-15 11:28:22 -03:00
|
|
|
|
2017-05-07 15:40:18 -03:00
|
|
|
FORMAT = '%(asctime)-15s %(clientip)s %(user)-8s %(message)s'
|
|
|
|
logging.basicConfig(format=FORMAT)
|
|
|
|
d = {'clientip': '192.168.0.1', 'user': 'fbloggs'}
|
|
|
|
logger = logging.getLogger('tcpserver')
|
|
|
|
logger.warning('Protocol problem: %s', 'connection reset', extra=d)
|
2007-08-15 11:28:22 -03:00
|
|
|
|
2018-04-08 13:18:04 -03:00
|
|
|
would print something like
|
|
|
|
|
|
|
|
.. code-block:: none
|
2007-08-15 11:28:22 -03:00
|
|
|
|
2017-05-07 15:40:18 -03:00
|
|
|
2006-02-08 22:20:02,165 192.168.0.1 fbloggs Protocol problem: connection reset
|
2007-08-15 11:28:22 -03:00
|
|
|
|
2017-05-07 15:40:18 -03:00
|
|
|
The keys in the dictionary passed in *extra* should not clash with the keys used
|
|
|
|
by the logging system. (See the :class:`Formatter` documentation for more
|
|
|
|
information on which keys are used by the logging system.)
|
2007-08-15 11:28:22 -03:00
|
|
|
|
2017-05-07 15:40:18 -03:00
|
|
|
If you choose to use these attributes in logged messages, you need to exercise
|
|
|
|
some care. In the above example, for instance, the :class:`Formatter` has been
|
|
|
|
set up with a format string which expects 'clientip' and 'user' in the attribute
|
2018-06-05 13:24:18 -03:00
|
|
|
dictionary of the :class:`LogRecord`. If these are missing, the message will
|
|
|
|
not be logged because a string formatting exception will occur. So in this case,
|
|
|
|
you always need to pass the *extra* dictionary with these keys.
|
2007-08-15 11:28:22 -03:00
|
|
|
|
2017-05-07 15:40:18 -03:00
|
|
|
While this might be annoying, this feature is intended for use in specialized
|
|
|
|
circumstances, such as multi-threaded servers where the same code executes in
|
|
|
|
many contexts, and interesting conditions which arise are dependent on this
|
|
|
|
context (such as remote client IP address and authenticated user name, in the
|
|
|
|
above example). In such circumstances, it is likely that specialized
|
|
|
|
:class:`Formatter`\ s would be used with particular :class:`Handler`\ s.
|
2007-08-15 11:28:22 -03:00
|
|
|
|
2018-07-05 21:01:16 -03:00
|
|
|
.. versionchanged:: 3.2
|
2017-05-07 15:40:18 -03:00
|
|
|
The *stack_info* parameter was added.
|
2007-08-15 11:28:22 -03:00
|
|
|
|
2017-05-07 15:40:18 -03:00
|
|
|
.. versionchanged:: 3.5
|
|
|
|
The *exc_info* parameter can now accept exception instances.
|
2014-09-14 17:29:11 -03:00
|
|
|
|
2018-07-05 21:01:16 -03:00
|
|
|
.. versionchanged:: 3.8
|
2018-06-05 13:24:18 -03:00
|
|
|
The *stacklevel* parameter was added.
|
|
|
|
|
2007-08-15 11:28:22 -03:00
|
|
|
|
2017-05-07 15:40:18 -03:00
|
|
|
.. method:: Logger.info(msg, *args, **kwargs)
|
2007-08-15 11:28:22 -03:00
|
|
|
|
2017-05-07 15:40:18 -03:00
|
|
|
Logs a message with level :const:`INFO` on this logger. The arguments are
|
|
|
|
interpreted as for :meth:`debug`.
|
2007-08-15 11:28:22 -03:00
|
|
|
|
|
|
|
|
2017-05-07 15:40:18 -03:00
|
|
|
.. method:: Logger.warning(msg, *args, **kwargs)
|
2007-08-15 11:28:22 -03:00
|
|
|
|
2017-05-07 15:40:18 -03:00
|
|
|
Logs a message with level :const:`WARNING` on this logger. The arguments are
|
|
|
|
interpreted as for :meth:`debug`.
|
2007-08-15 11:28:22 -03:00
|
|
|
|
2017-05-07 15:40:18 -03:00
|
|
|
.. note:: There is an obsolete method ``warn`` which is functionally
|
|
|
|
identical to ``warning``. As ``warn`` is deprecated, please do not use
|
|
|
|
it - use ``warning`` instead.
|
2007-08-15 11:28:22 -03:00
|
|
|
|
2017-05-07 15:40:18 -03:00
|
|
|
.. method:: Logger.error(msg, *args, **kwargs)
|
2007-08-15 11:28:22 -03:00
|
|
|
|
2017-05-07 15:40:18 -03:00
|
|
|
Logs a message with level :const:`ERROR` on this logger. The arguments are
|
|
|
|
interpreted as for :meth:`debug`.
|
2007-08-15 11:28:22 -03:00
|
|
|
|
|
|
|
|
2017-05-07 15:40:18 -03:00
|
|
|
.. method:: Logger.critical(msg, *args, **kwargs)
|
2007-08-15 11:28:22 -03:00
|
|
|
|
2017-05-07 15:40:18 -03:00
|
|
|
Logs a message with level :const:`CRITICAL` on this logger. The arguments are
|
|
|
|
interpreted as for :meth:`debug`.
|
2007-08-15 11:28:22 -03:00
|
|
|
|
|
|
|
|
2019-10-04 04:55:14 -03:00
|
|
|
.. method:: Logger.log(level, msg, *args, **kwargs)
|
2007-08-15 11:28:22 -03:00
|
|
|
|
2019-10-04 04:55:14 -03:00
|
|
|
Logs a message with integer level *level* on this logger. The other arguments are
|
2017-05-07 15:40:18 -03:00
|
|
|
interpreted as for :meth:`debug`.
|
2007-08-15 11:28:22 -03:00
|
|
|
|
|
|
|
|
2017-05-07 15:40:18 -03:00
|
|
|
.. method:: Logger.exception(msg, *args, **kwargs)
|
2007-08-15 11:28:22 -03:00
|
|
|
|
2017-05-07 15:40:18 -03:00
|
|
|
Logs a message with level :const:`ERROR` on this logger. The arguments are
|
|
|
|
interpreted as for :meth:`debug`. Exception info is added to the logging
|
|
|
|
message. This method should only be called from an exception handler.
|
2007-08-15 11:28:22 -03:00
|
|
|
|
|
|
|
|
2017-12-09 07:09:04 -04:00
|
|
|
.. method:: Logger.addFilter(filter)
|
2007-08-15 11:28:22 -03:00
|
|
|
|
2017-12-09 07:09:04 -04:00
|
|
|
Adds the specified filter *filter* to this logger.
|
2007-08-15 11:28:22 -03:00
|
|
|
|
|
|
|
|
2017-12-09 07:09:04 -04:00
|
|
|
.. method:: Logger.removeFilter(filter)
|
2007-08-15 11:28:22 -03:00
|
|
|
|
2017-12-09 07:09:04 -04:00
|
|
|
Removes the specified filter *filter* from this logger.
|
2007-08-15 11:28:22 -03:00
|
|
|
|
|
|
|
|
2017-05-07 15:40:18 -03:00
|
|
|
.. method:: Logger.filter(record)
|
2007-08-15 11:28:22 -03:00
|
|
|
|
2019-11-12 10:57:03 -04:00
|
|
|
Apply this logger's filters to the record and return ``True`` if the
|
2017-05-07 15:40:18 -03:00
|
|
|
record is to be processed. The filters are consulted in turn, until one of
|
|
|
|
them returns a false value. If none of them return a false value, the record
|
|
|
|
will be processed (passed to handlers). If one returns a false value, no
|
|
|
|
further processing of the record occurs.
|
2007-08-15 11:28:22 -03:00
|
|
|
|
|
|
|
|
2017-05-07 15:40:18 -03:00
|
|
|
.. method:: Logger.addHandler(hdlr)
|
2007-08-15 11:28:22 -03:00
|
|
|
|
2017-05-07 15:40:18 -03:00
|
|
|
Adds the specified handler *hdlr* to this logger.
|
2007-08-15 11:28:22 -03:00
|
|
|
|
|
|
|
|
2017-05-07 15:40:18 -03:00
|
|
|
.. method:: Logger.removeHandler(hdlr)
|
2009-10-10 17:32:36 -03:00
|
|
|
|
2017-05-07 15:40:18 -03:00
|
|
|
Removes the specified handler *hdlr* from this logger.
|
2010-09-17 07:09:04 -03:00
|
|
|
|
2007-08-15 11:28:22 -03:00
|
|
|
|
2018-06-05 13:24:18 -03:00
|
|
|
.. method:: Logger.findCaller(stack_info=False, stacklevel=1)
|
2007-08-15 11:28:22 -03:00
|
|
|
|
2017-05-07 15:40:18 -03:00
|
|
|
Finds the caller's source filename and line number. Returns the filename, line
|
|
|
|
number, function name and stack information as a 4-element tuple. The stack
|
|
|
|
information is returned as ``None`` unless *stack_info* is ``True``.
|
2010-10-31 11:59:16 -03:00
|
|
|
|
2018-06-05 13:24:18 -03:00
|
|
|
The *stacklevel* parameter is passed from code calling the :meth:`debug`
|
|
|
|
and other APIs. If greater than 1, the excess is used to skip stack frames
|
|
|
|
before determining the values to be returned. This will generally be useful
|
|
|
|
when calling logging APIs from helper/wrapper code, so that the information
|
|
|
|
in the event log refers not to the helper/wrapper code, but to the code that
|
|
|
|
calls it.
|
|
|
|
|
2010-10-31 11:59:16 -03:00
|
|
|
|
2017-05-07 15:40:18 -03:00
|
|
|
.. method:: Logger.handle(record)
|
2007-08-15 11:28:22 -03:00
|
|
|
|
2017-05-07 15:40:18 -03:00
|
|
|
Handles a record by passing it to all handlers associated with this logger and
|
|
|
|
its ancestors (until a false value of *propagate* is found). This method is used
|
|
|
|
for unpickled records received from a socket, as well as those created locally.
|
|
|
|
Logger-level filtering is applied using :meth:`~Logger.filter`.
|
2007-08-15 11:28:22 -03:00
|
|
|
|
|
|
|
|
2019-10-04 04:55:14 -03:00
|
|
|
.. method:: Logger.makeRecord(name, level, fn, lno, msg, args, exc_info, func=None, extra=None, sinfo=None)
|
2007-08-15 11:28:22 -03:00
|
|
|
|
2017-05-07 15:40:18 -03:00
|
|
|
This is a factory method which can be overridden in subclasses to create
|
|
|
|
specialized :class:`LogRecord` instances.
|
2007-08-15 11:28:22 -03:00
|
|
|
|
2017-05-07 15:40:18 -03:00
|
|
|
.. method:: Logger.hasHandlers()
|
2010-12-03 11:30:09 -04:00
|
|
|
|
2017-05-07 15:40:18 -03:00
|
|
|
Checks to see if this logger has any handlers configured. This is done by
|
|
|
|
looking for handlers in this logger and its parents in the logger hierarchy.
|
|
|
|
Returns ``True`` if a handler was found, else ``False``. The method stops searching
|
|
|
|
up the hierarchy whenever a logger with the 'propagate' attribute set to
|
|
|
|
false is found - that will be the last logger which is checked for the
|
|
|
|
existence of handlers.
|
2010-12-03 07:50:38 -04:00
|
|
|
|
2017-05-07 15:40:18 -03:00
|
|
|
.. versionadded:: 3.2
|
2010-12-03 07:50:38 -04:00
|
|
|
|
2017-06-06 12:34:29 -03:00
|
|
|
.. versionchanged:: 3.7
|
2018-02-28 19:46:35 -04:00
|
|
|
Loggers can now be pickled and unpickled.
|
2010-12-03 07:50:38 -04:00
|
|
|
|
2013-12-19 07:50:24 -04:00
|
|
|
.. _levels:
|
|
|
|
|
|
|
|
Logging Levels
|
|
|
|
--------------
|
|
|
|
|
|
|
|
The numeric values of logging levels are given in the following table. These are
|
|
|
|
primarily of interest if you want to define your own levels, and need them to
|
|
|
|
have specific values relative to the predefined levels. If you define a level
|
|
|
|
with the same numeric value, it overwrites the predefined value; the predefined
|
|
|
|
name is lost.
|
|
|
|
|
|
|
|
+--------------+---------------+
|
|
|
|
| Level | Numeric value |
|
|
|
|
+==============+===============+
|
|
|
|
| ``CRITICAL`` | 50 |
|
|
|
|
+--------------+---------------+
|
|
|
|
| ``ERROR`` | 40 |
|
|
|
|
+--------------+---------------+
|
|
|
|
| ``WARNING`` | 30 |
|
|
|
|
+--------------+---------------+
|
|
|
|
| ``INFO`` | 20 |
|
|
|
|
+--------------+---------------+
|
|
|
|
| ``DEBUG`` | 10 |
|
|
|
|
+--------------+---------------+
|
|
|
|
| ``NOTSET`` | 0 |
|
|
|
|
+--------------+---------------+
|
|
|
|
|
|
|
|
|
2010-12-19 08:56:57 -04:00
|
|
|
.. _handler:
|
2010-12-03 07:50:38 -04:00
|
|
|
|
2010-12-19 08:56:57 -04:00
|
|
|
Handler Objects
|
|
|
|
---------------
|
2010-12-03 07:50:38 -04:00
|
|
|
|
2010-12-19 08:56:57 -04:00
|
|
|
Handlers have the following attributes and methods. Note that :class:`Handler`
|
|
|
|
is never instantiated directly; this class acts as a base for more useful
|
|
|
|
subclasses. However, the :meth:`__init__` method in subclasses needs to call
|
|
|
|
:meth:`Handler.__init__`.
|
2010-12-03 07:50:38 -04:00
|
|
|
|
2017-05-12 05:38:13 -03:00
|
|
|
.. class:: Handler
|
2007-08-15 11:28:22 -03:00
|
|
|
|
2017-05-12 05:38:13 -03:00
|
|
|
.. method:: Handler.__init__(level=NOTSET)
|
2010-12-03 11:30:09 -04:00
|
|
|
|
2017-05-12 05:38:13 -03:00
|
|
|
Initializes the :class:`Handler` instance by setting its level, setting the list
|
|
|
|
of filters to the empty list and creating a lock (using :meth:`createLock`) for
|
|
|
|
serializing access to an I/O mechanism.
|
2007-08-15 11:28:22 -03:00
|
|
|
|
|
|
|
|
2017-05-12 05:38:13 -03:00
|
|
|
.. method:: Handler.createLock()
|
2007-08-15 11:28:22 -03:00
|
|
|
|
2017-05-12 05:38:13 -03:00
|
|
|
Initializes a thread lock which can be used to serialize access to underlying
|
|
|
|
I/O functionality which may not be threadsafe.
|
2007-08-15 11:28:22 -03:00
|
|
|
|
|
|
|
|
2017-05-12 05:38:13 -03:00
|
|
|
.. method:: Handler.acquire()
|
2007-08-15 11:28:22 -03:00
|
|
|
|
2017-05-12 05:38:13 -03:00
|
|
|
Acquires the thread lock created with :meth:`createLock`.
|
2007-08-15 11:28:22 -03:00
|
|
|
|
|
|
|
|
2017-05-12 05:38:13 -03:00
|
|
|
.. method:: Handler.release()
|
2007-08-15 11:28:22 -03:00
|
|
|
|
2017-05-12 05:38:13 -03:00
|
|
|
Releases the thread lock acquired with :meth:`acquire`.
|
2007-08-15 11:28:22 -03:00
|
|
|
|
|
|
|
|
2017-12-09 07:09:04 -04:00
|
|
|
.. method:: Handler.setLevel(level)
|
2007-08-15 11:28:22 -03:00
|
|
|
|
2017-12-09 07:09:04 -04:00
|
|
|
Sets the threshold for this handler to *level*. Logging messages which are
|
|
|
|
less severe than *level* will be ignored. When a handler is created, the
|
|
|
|
level is set to :const:`NOTSET` (which causes all messages to be
|
|
|
|
processed).
|
2007-08-15 11:28:22 -03:00
|
|
|
|
2017-05-12 05:38:13 -03:00
|
|
|
See :ref:`levels` for a list of levels.
|
2013-12-19 07:50:24 -04:00
|
|
|
|
2017-05-12 05:38:13 -03:00
|
|
|
.. versionchanged:: 3.2
|
2017-12-09 07:09:04 -04:00
|
|
|
The *level* parameter now accepts a string representation of the
|
2017-05-12 05:38:13 -03:00
|
|
|
level such as 'INFO' as an alternative to the integer constants
|
|
|
|
such as :const:`INFO`.
|
2012-01-14 16:46:17 -04:00
|
|
|
|
2007-08-15 11:28:22 -03:00
|
|
|
|
2017-12-09 07:09:04 -04:00
|
|
|
.. method:: Handler.setFormatter(fmt)
|
2007-08-15 11:28:22 -03:00
|
|
|
|
2017-12-09 07:09:04 -04:00
|
|
|
Sets the :class:`Formatter` for this handler to *fmt*.
|
2007-08-15 11:28:22 -03:00
|
|
|
|
|
|
|
|
2017-12-09 07:09:04 -04:00
|
|
|
.. method:: Handler.addFilter(filter)
|
2007-08-15 11:28:22 -03:00
|
|
|
|
2017-12-09 07:09:04 -04:00
|
|
|
Adds the specified filter *filter* to this handler.
|
2007-08-15 11:28:22 -03:00
|
|
|
|
|
|
|
|
2017-12-09 07:09:04 -04:00
|
|
|
.. method:: Handler.removeFilter(filter)
|
2007-08-15 11:28:22 -03:00
|
|
|
|
2017-12-09 07:09:04 -04:00
|
|
|
Removes the specified filter *filter* from this handler.
|
2007-08-15 11:28:22 -03:00
|
|
|
|
Merged revisions 79279,79284,79293,79373,79376,79379,79876,79888 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk
........
r79279 | vinay.sajip | 2010-03-22 07:33:08 -0500 (Mon, 22 Mar 2010) | 1 line
Issue #8200: logging: Handle errors when multiprocessing is not fully loaded when logging occurs.
........
r79284 | vinay.sajip | 2010-03-22 08:02:28 -0500 (Mon, 22 Mar 2010) | 1 line
Issue #8201: logging: Handle config errors when non-ASCII and Unicode logger names exist at the same time.
........
r79293 | vinay.sajip | 2010-03-22 10:29:01 -0500 (Mon, 22 Mar 2010) | 1 line
logging: Added getChild utility method to Logger and added isEnabledFor method to LoggerAdapter.
........
r79373 | vinay.sajip | 2010-03-24 09:31:21 -0500 (Wed, 24 Mar 2010) | 1 line
logging: Added LOG_FTP for SysLogHandler and updated documentation.
........
r79376 | vinay.sajip | 2010-03-24 10:10:40 -0500 (Wed, 24 Mar 2010) | 1 line
logging: Documentation tweak.
........
r79379 | vinay.sajip | 2010-03-24 12:36:35 -0500 (Wed, 24 Mar 2010) | 1 line
logging: Updated SysLogHandler documentation.
........
r79876 | vinay.sajip | 2010-04-06 17:32:37 -0500 (Tue, 06 Apr 2010) | 1 line
Issue #8327: logging: Clarification of propagation functionality in documentation.
........
r79888 | vinay.sajip | 2010-04-07 04:40:52 -0500 (Wed, 07 Apr 2010) | 1 line
Issue #8331: logging: fixed some grammatical errors in documentation.
........
2010-04-11 13:25:06 -03:00
|
|
|
|
2017-05-12 05:38:13 -03:00
|
|
|
.. method:: Handler.filter(record)
|
Merged revisions 79279,79284,79293,79373,79376,79379,79876,79888 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk
........
r79279 | vinay.sajip | 2010-03-22 07:33:08 -0500 (Mon, 22 Mar 2010) | 1 line
Issue #8200: logging: Handle errors when multiprocessing is not fully loaded when logging occurs.
........
r79284 | vinay.sajip | 2010-03-22 08:02:28 -0500 (Mon, 22 Mar 2010) | 1 line
Issue #8201: logging: Handle config errors when non-ASCII and Unicode logger names exist at the same time.
........
r79293 | vinay.sajip | 2010-03-22 10:29:01 -0500 (Mon, 22 Mar 2010) | 1 line
logging: Added getChild utility method to Logger and added isEnabledFor method to LoggerAdapter.
........
r79373 | vinay.sajip | 2010-03-24 09:31:21 -0500 (Wed, 24 Mar 2010) | 1 line
logging: Added LOG_FTP for SysLogHandler and updated documentation.
........
r79376 | vinay.sajip | 2010-03-24 10:10:40 -0500 (Wed, 24 Mar 2010) | 1 line
logging: Documentation tweak.
........
r79379 | vinay.sajip | 2010-03-24 12:36:35 -0500 (Wed, 24 Mar 2010) | 1 line
logging: Updated SysLogHandler documentation.
........
r79876 | vinay.sajip | 2010-04-06 17:32:37 -0500 (Tue, 06 Apr 2010) | 1 line
Issue #8327: logging: Clarification of propagation functionality in documentation.
........
r79888 | vinay.sajip | 2010-04-07 04:40:52 -0500 (Wed, 07 Apr 2010) | 1 line
Issue #8331: logging: fixed some grammatical errors in documentation.
........
2010-04-11 13:25:06 -03:00
|
|
|
|
2019-11-12 10:57:03 -04:00
|
|
|
Apply this handler's filters to the record and return ``True`` if the
|
2017-05-12 05:38:13 -03:00
|
|
|
record is to be processed. The filters are consulted in turn, until one of
|
|
|
|
them returns a false value. If none of them return a false value, the record
|
|
|
|
will be emitted. If one returns a false value, the handler will not emit the
|
|
|
|
record.
|
Merged revisions 79279,79284,79293,79373,79376,79379,79876,79888 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk
........
r79279 | vinay.sajip | 2010-03-22 07:33:08 -0500 (Mon, 22 Mar 2010) | 1 line
Issue #8200: logging: Handle errors when multiprocessing is not fully loaded when logging occurs.
........
r79284 | vinay.sajip | 2010-03-22 08:02:28 -0500 (Mon, 22 Mar 2010) | 1 line
Issue #8201: logging: Handle config errors when non-ASCII and Unicode logger names exist at the same time.
........
r79293 | vinay.sajip | 2010-03-22 10:29:01 -0500 (Mon, 22 Mar 2010) | 1 line
logging: Added getChild utility method to Logger and added isEnabledFor method to LoggerAdapter.
........
r79373 | vinay.sajip | 2010-03-24 09:31:21 -0500 (Wed, 24 Mar 2010) | 1 line
logging: Added LOG_FTP for SysLogHandler and updated documentation.
........
r79376 | vinay.sajip | 2010-03-24 10:10:40 -0500 (Wed, 24 Mar 2010) | 1 line
logging: Documentation tweak.
........
r79379 | vinay.sajip | 2010-03-24 12:36:35 -0500 (Wed, 24 Mar 2010) | 1 line
logging: Updated SysLogHandler documentation.
........
r79876 | vinay.sajip | 2010-04-06 17:32:37 -0500 (Tue, 06 Apr 2010) | 1 line
Issue #8327: logging: Clarification of propagation functionality in documentation.
........
r79888 | vinay.sajip | 2010-04-07 04:40:52 -0500 (Wed, 07 Apr 2010) | 1 line
Issue #8331: logging: fixed some grammatical errors in documentation.
........
2010-04-11 13:25:06 -03:00
|
|
|
|
2010-08-17 12:07:14 -03:00
|
|
|
|
2017-05-12 05:38:13 -03:00
|
|
|
.. method:: Handler.flush()
|
2007-08-15 11:28:22 -03:00
|
|
|
|
2017-05-12 05:38:13 -03:00
|
|
|
Ensure all logging output has been flushed. This version does nothing and is
|
|
|
|
intended to be implemented by subclasses.
|
2007-08-15 11:28:22 -03:00
|
|
|
|
|
|
|
|
2017-05-12 05:38:13 -03:00
|
|
|
.. method:: Handler.close()
|
2010-11-14 17:33:04 -04:00
|
|
|
|
2017-05-12 05:38:13 -03:00
|
|
|
Tidy up any resources used by the handler. This version does no output but
|
|
|
|
removes the handler from an internal list of handlers which is closed when
|
|
|
|
:func:`shutdown` is called. Subclasses should ensure that this gets called
|
|
|
|
from overridden :meth:`close` methods.
|
2010-11-14 17:33:04 -04:00
|
|
|
|
|
|
|
|
2017-05-12 05:38:13 -03:00
|
|
|
.. method:: Handler.handle(record)
|
2010-11-14 17:33:04 -04:00
|
|
|
|
2017-05-12 05:38:13 -03:00
|
|
|
Conditionally emits the specified logging record, depending on filters which may
|
|
|
|
have been added to the handler. Wraps the actual emission of the record with
|
|
|
|
acquisition/release of the I/O thread lock.
|
2007-08-15 11:28:22 -03:00
|
|
|
|
|
|
|
|
2017-05-12 05:38:13 -03:00
|
|
|
.. method:: Handler.handleError(record)
|
2007-08-15 11:28:22 -03:00
|
|
|
|
2017-05-12 05:38:13 -03:00
|
|
|
This method should be called from handlers when an exception is encountered
|
|
|
|
during an :meth:`emit` call. If the module-level attribute
|
|
|
|
``raiseExceptions`` is ``False``, exceptions get silently ignored. This is
|
|
|
|
what is mostly wanted for a logging system - most users will not care about
|
|
|
|
errors in the logging system, they are more interested in application
|
|
|
|
errors. You could, however, replace this with a custom handler if you wish.
|
|
|
|
The specified record is the one which was being processed when the exception
|
|
|
|
occurred. (The default value of ``raiseExceptions`` is ``True``, as that is
|
|
|
|
more useful during development).
|
2007-08-15 11:28:22 -03:00
|
|
|
|
|
|
|
|
2017-05-12 05:38:13 -03:00
|
|
|
.. method:: Handler.format(record)
|
2007-08-15 11:28:22 -03:00
|
|
|
|
2017-05-12 05:38:13 -03:00
|
|
|
Do formatting for a record - if a formatter is set, use it. Otherwise, use the
|
|
|
|
default formatter for the module.
|
2007-08-15 11:28:22 -03:00
|
|
|
|
|
|
|
|
2017-05-12 05:38:13 -03:00
|
|
|
.. method:: Handler.emit(record)
|
2007-08-15 11:28:22 -03:00
|
|
|
|
2017-05-12 05:38:13 -03:00
|
|
|
Do whatever it takes to actually log the specified logging record. This version
|
|
|
|
is intended to be implemented by subclasses and so raises a
|
|
|
|
:exc:`NotImplementedError`.
|
2007-08-15 11:28:22 -03:00
|
|
|
|
2010-12-19 08:56:57 -04:00
|
|
|
For a list of handlers included as standard, see :mod:`logging.handlers`.
|
2007-08-15 11:28:22 -03:00
|
|
|
|
2010-12-19 08:56:57 -04:00
|
|
|
.. _formatter-objects:
|
2007-08-15 11:28:22 -03:00
|
|
|
|
2010-12-19 08:56:57 -04:00
|
|
|
Formatter Objects
|
|
|
|
-----------------
|
2007-08-15 11:28:22 -03:00
|
|
|
|
2010-12-19 08:56:57 -04:00
|
|
|
.. currentmodule:: logging
|
2007-08-15 11:28:22 -03:00
|
|
|
|
2010-12-19 08:56:57 -04:00
|
|
|
:class:`Formatter` objects have the following attributes and methods. They are
|
|
|
|
responsible for converting a :class:`LogRecord` to (usually) a string which can
|
|
|
|
be interpreted by either a human or an external system. The base
|
|
|
|
:class:`Formatter` allows a formatting string to be specified. If none is
|
2015-05-02 05:46:05 -03:00
|
|
|
supplied, the default value of ``'%(message)s'`` is used, which just includes
|
|
|
|
the message in the logging call. To have additional items of information in the
|
|
|
|
formatted output (such as a timestamp), keep reading.
|
2007-08-15 11:28:22 -03:00
|
|
|
|
2010-12-19 08:56:57 -04:00
|
|
|
A Formatter can be initialized with a format string which makes use of knowledge
|
|
|
|
of the :class:`LogRecord` attributes - such as the default value mentioned above
|
|
|
|
making use of the fact that the user's message and arguments are pre-formatted
|
|
|
|
into a :class:`LogRecord`'s *message* attribute. This format string contains
|
|
|
|
standard Python %-style mapping keys. See section :ref:`old-string-formatting`
|
|
|
|
for more information on string formatting.
|
2007-08-15 11:28:22 -03:00
|
|
|
|
2010-12-19 08:56:57 -04:00
|
|
|
The useful mapping keys in a :class:`LogRecord` are given in the section on
|
|
|
|
:ref:`logrecord-attributes`.
|
2007-08-15 11:28:22 -03:00
|
|
|
|
|
|
|
|
2020-09-10 07:50:23 -03:00
|
|
|
.. class:: Formatter(fmt=None, datefmt=None, style='%', validate=True, *, defaults=None)
|
2007-08-15 11:28:22 -03:00
|
|
|
|
2010-12-19 08:56:57 -04:00
|
|
|
Returns a new instance of the :class:`Formatter` class. The instance is
|
|
|
|
initialized with a format string for the message as a whole, as well as a
|
|
|
|
format string for the date/time portion of a message. If no *fmt* is
|
2018-06-01 06:09:21 -03:00
|
|
|
specified, ``'%(message)s'`` is used. If no *datefmt* is specified, a format
|
|
|
|
is used which is described in the :meth:`formatTime` documentation.
|
2007-08-15 11:28:22 -03:00
|
|
|
|
2011-04-07 21:30:51 -03:00
|
|
|
The *style* parameter can be one of '%', '{' or '$' and determines how
|
|
|
|
the format string will be merged with its data: using one of %-formatting,
|
2019-09-09 08:29:54 -03:00
|
|
|
:meth:`str.format` or :class:`string.Template`. This only applies to the
|
|
|
|
format string *fmt* (e.g. ``'%(message)s'`` or ``{message}``), not to the
|
|
|
|
actual log messages passed to ``Logger.debug`` etc; see
|
|
|
|
:ref:`formatting-styles` for more information on using {- and $-formatting
|
|
|
|
for log messages.
|
2011-04-07 21:30:51 -03:00
|
|
|
|
2020-06-18 11:18:58 -03:00
|
|
|
The *defaults* parameter can be a dictionary with default values to use in
|
|
|
|
custom fields. For example:
|
|
|
|
``logging.Formatter('%(ip)s %(message)s', defaults={"ip": None})``
|
|
|
|
|
2011-04-07 21:30:51 -03:00
|
|
|
.. versionchanged:: 3.2
|
|
|
|
The *style* parameter was added.
|
|
|
|
|
2018-10-15 15:41:36 -03:00
|
|
|
.. versionchanged:: 3.8
|
|
|
|
The *validate* parameter was added. Incorrect or mismatched style and fmt
|
|
|
|
will raise a ``ValueError``.
|
|
|
|
For example: ``logging.Formatter('%(asctime)s - %(message)s', style='{')``.
|
2011-04-07 21:30:51 -03:00
|
|
|
|
2020-06-18 11:18:58 -03:00
|
|
|
.. versionchanged:: 3.10
|
|
|
|
The *defaults* parameter was added.
|
|
|
|
|
2010-12-19 08:56:57 -04:00
|
|
|
.. method:: format(record)
|
2007-08-15 11:28:22 -03:00
|
|
|
|
2010-12-19 08:56:57 -04:00
|
|
|
The record's attribute dictionary is used as the operand to a string
|
|
|
|
formatting operation. Returns the resulting string. Before formatting the
|
|
|
|
dictionary, a couple of preparatory steps are carried out. The *message*
|
|
|
|
attribute of the record is computed using *msg* % *args*. If the
|
|
|
|
formatting string contains ``'(asctime)'``, :meth:`formatTime` is called
|
|
|
|
to format the event time. If there is exception information, it is
|
|
|
|
formatted using :meth:`formatException` and appended to the message. Note
|
|
|
|
that the formatted exception information is cached in attribute
|
|
|
|
*exc_text*. This is useful because the exception information can be
|
|
|
|
pickled and sent across the wire, but you should be careful if you have
|
|
|
|
more than one :class:`Formatter` subclass which customizes the formatting
|
|
|
|
of exception information. In this case, you will have to clear the cached
|
2020-09-09 07:21:22 -03:00
|
|
|
value (by setting the *exc_text* attribute to ``None``) after a formatter
|
|
|
|
has done its formatting, so that the next formatter to handle the event
|
|
|
|
doesn't use the cached value, but recalculates it afresh.
|
2007-08-15 11:28:22 -03:00
|
|
|
|
2010-12-19 08:56:57 -04:00
|
|
|
If stack information is available, it's appended after the exception
|
|
|
|
information, using :meth:`formatStack` to transform it if necessary.
|
2007-08-15 11:28:22 -03:00
|
|
|
|
|
|
|
|
2010-12-19 08:56:57 -04:00
|
|
|
.. method:: formatTime(record, datefmt=None)
|
2007-08-15 11:28:22 -03:00
|
|
|
|
2010-12-19 08:56:57 -04:00
|
|
|
This method should be called from :meth:`format` by a formatter which
|
|
|
|
wants to make use of a formatted time. This method can be overridden in
|
|
|
|
formatters to provide for any specific requirement, but the basic behavior
|
|
|
|
is as follows: if *datefmt* (a string) is specified, it is used with
|
|
|
|
:func:`time.strftime` to format the creation time of the
|
2018-06-01 06:09:21 -03:00
|
|
|
record. Otherwise, the format '%Y-%m-%d %H:%M:%S,uuu' is used, where the
|
|
|
|
uuu part is a millisecond value and the other letters are as per the
|
|
|
|
:func:`time.strftime` documentation. An example time in this format is
|
|
|
|
``2003-01-23 00:29:50,411``. The resulting string is returned.
|
2007-08-15 11:28:22 -03:00
|
|
|
|
2011-06-12 07:44:28 -03:00
|
|
|
This function uses a user-configurable function to convert the creation
|
|
|
|
time to a tuple. By default, :func:`time.localtime` is used; to change
|
|
|
|
this for a particular formatter instance, set the ``converter`` attribute
|
|
|
|
to a function with the same signature as :func:`time.localtime` or
|
|
|
|
:func:`time.gmtime`. To change it for all formatters, for example if you
|
|
|
|
want all logging times to be shown in GMT, set the ``converter``
|
|
|
|
attribute in the ``Formatter`` class.
|
2007-08-15 11:28:22 -03:00
|
|
|
|
2011-06-10 15:05:16 -03:00
|
|
|
.. versionchanged:: 3.3
|
2018-06-01 06:09:21 -03:00
|
|
|
Previously, the default format was hard-coded as in this example:
|
|
|
|
``2010-09-06 22:38:15,292`` where the part before the comma is
|
2011-06-14 16:09:55 -03:00
|
|
|
handled by a strptime format string (``'%Y-%m-%d %H:%M:%S'``), and the
|
|
|
|
part after the comma is a millisecond value. Because strptime does not
|
|
|
|
have a format placeholder for milliseconds, the millisecond value is
|
2016-12-04 04:20:55 -04:00
|
|
|
appended using another format string, ``'%s,%03d'`` --- and both of these
|
2011-06-14 16:09:55 -03:00
|
|
|
format strings have been hardcoded into this method. With the change,
|
|
|
|
these strings are defined as class-level attributes which can be
|
|
|
|
overridden at the instance level when desired. The names of the
|
|
|
|
attributes are ``default_time_format`` (for the strptime format string)
|
|
|
|
and ``default_msec_format`` (for appending the millisecond value).
|
2007-08-15 11:28:22 -03:00
|
|
|
|
2020-04-17 13:02:47 -03:00
|
|
|
.. versionchanged:: 3.9
|
|
|
|
The ``default_msec_format`` can be ``None``.
|
|
|
|
|
2010-12-19 08:56:57 -04:00
|
|
|
.. method:: formatException(exc_info)
|
2007-08-15 11:28:22 -03:00
|
|
|
|
2010-12-19 08:56:57 -04:00
|
|
|
Formats the specified exception information (a standard exception tuple as
|
|
|
|
returned by :func:`sys.exc_info`) as a string. This default implementation
|
|
|
|
just uses :func:`traceback.print_exception`. The resulting string is
|
|
|
|
returned.
|
2007-08-15 11:28:22 -03:00
|
|
|
|
2010-12-19 08:56:57 -04:00
|
|
|
.. method:: formatStack(stack_info)
|
2010-09-20 07:31:18 -03:00
|
|
|
|
2010-12-19 08:56:57 -04:00
|
|
|
Formats the specified stack information (a string as returned by
|
|
|
|
:func:`traceback.print_stack`, but with the last newline removed) as a
|
|
|
|
string. This default implementation just returns the input value.
|
2010-09-20 07:31:18 -03:00
|
|
|
|
2010-12-19 08:56:57 -04:00
|
|
|
.. _filter:
|
2010-09-20 07:31:18 -03:00
|
|
|
|
2010-12-19 08:56:57 -04:00
|
|
|
Filter Objects
|
|
|
|
--------------
|
2007-08-15 11:28:22 -03:00
|
|
|
|
2010-12-19 08:56:57 -04:00
|
|
|
``Filters`` can be used by ``Handlers`` and ``Loggers`` for more sophisticated
|
|
|
|
filtering than is provided by levels. The base filter class only allows events
|
|
|
|
which are below a certain point in the logger hierarchy. For example, a filter
|
|
|
|
initialized with 'A.B' will allow events logged by loggers 'A.B', 'A.B.C',
|
|
|
|
'A.B.C.D', 'A.B.D' etc. but not 'A.BB', 'B.A.B' etc. If initialized with the
|
|
|
|
empty string, all events are passed.
|
2007-08-15 11:28:22 -03:00
|
|
|
|
|
|
|
|
2010-12-19 08:56:57 -04:00
|
|
|
.. class:: Filter(name='')
|
2007-08-15 11:28:22 -03:00
|
|
|
|
2010-12-19 08:56:57 -04:00
|
|
|
Returns an instance of the :class:`Filter` class. If *name* is specified, it
|
|
|
|
names a logger which, together with its children, will have its events allowed
|
|
|
|
through the filter. If *name* is the empty string, allows every event.
|
2007-08-15 11:28:22 -03:00
|
|
|
|
|
|
|
|
2010-12-19 08:56:57 -04:00
|
|
|
.. method:: filter(record)
|
2007-08-15 11:28:22 -03:00
|
|
|
|
2010-12-19 08:56:57 -04:00
|
|
|
Is the specified record to be logged? Returns zero for no, nonzero for
|
|
|
|
yes. If deemed appropriate, the record may be modified in-place by this
|
|
|
|
method.
|
2007-08-15 11:28:22 -03:00
|
|
|
|
2013-01-21 15:44:28 -04:00
|
|
|
Note that filters attached to handlers are consulted before an event is
|
2010-12-19 08:56:57 -04:00
|
|
|
emitted by the handler, whereas filters attached to loggers are consulted
|
2013-01-21 15:44:28 -04:00
|
|
|
whenever an event is logged (using :meth:`debug`, :meth:`info`,
|
|
|
|
etc.), before sending an event to handlers. This means that events which have
|
|
|
|
been generated by descendant loggers will not be filtered by a logger's filter
|
|
|
|
setting, unless the filter has also been applied to those descendant loggers.
|
2007-08-31 06:22:56 -03:00
|
|
|
|
2010-12-19 08:56:57 -04:00
|
|
|
You don't actually need to subclass ``Filter``: you can pass any instance
|
|
|
|
which has a ``filter`` method with the same semantics.
|
2007-08-15 11:28:22 -03:00
|
|
|
|
2010-12-19 08:56:57 -04:00
|
|
|
.. versionchanged:: 3.2
|
|
|
|
You don't need to create specialized ``Filter`` classes, or use other
|
|
|
|
classes with a ``filter`` method: you can use a function (or other
|
|
|
|
callable) as a filter. The filtering logic will check to see if the filter
|
|
|
|
object has a ``filter`` attribute: if it does, it's assumed to be a
|
|
|
|
``Filter`` and its :meth:`~Filter.filter` method is called. Otherwise, it's
|
|
|
|
assumed to be a callable and called with the record as the single
|
|
|
|
parameter. The returned value should conform to that returned by
|
|
|
|
:meth:`~Filter.filter`.
|
2007-08-15 11:28:22 -03:00
|
|
|
|
2010-12-19 08:56:57 -04:00
|
|
|
Although filters are used primarily to filter records based on more
|
|
|
|
sophisticated criteria than levels, they get to see every record which is
|
|
|
|
processed by the handler or logger they're attached to: this can be useful if
|
|
|
|
you want to do things like counting how many records were processed by a
|
|
|
|
particular logger or handler, or adding, changing or removing attributes in
|
2018-06-05 13:24:18 -03:00
|
|
|
the :class:`LogRecord` being processed. Obviously changing the LogRecord needs
|
|
|
|
to be done with some care, but it does allow the injection of contextual
|
|
|
|
information into logs (see :ref:`filters-contextual`).
|
2007-08-15 11:28:22 -03:00
|
|
|
|
2010-12-19 08:56:57 -04:00
|
|
|
.. _log-record:
|
2007-08-15 11:28:22 -03:00
|
|
|
|
2010-12-19 08:56:57 -04:00
|
|
|
LogRecord Objects
|
|
|
|
-----------------
|
2007-08-15 11:28:22 -03:00
|
|
|
|
2010-12-19 08:56:57 -04:00
|
|
|
:class:`LogRecord` instances are created automatically by the :class:`Logger`
|
|
|
|
every time something is logged, and can be created manually via
|
|
|
|
:func:`makeLogRecord` (for example, from a pickled event received over the
|
|
|
|
wire).
|
2007-08-15 11:28:22 -03:00
|
|
|
|
|
|
|
|
2010-12-19 08:56:57 -04:00
|
|
|
.. class:: LogRecord(name, level, pathname, lineno, msg, args, exc_info, func=None, sinfo=None)
|
2007-08-15 11:28:22 -03:00
|
|
|
|
2010-12-19 08:56:57 -04:00
|
|
|
Contains all the information pertinent to the event being logged.
|
2007-08-15 11:28:22 -03:00
|
|
|
|
2010-12-19 08:56:57 -04:00
|
|
|
The primary information is passed in :attr:`msg` and :attr:`args`, which
|
|
|
|
are combined using ``msg % args`` to create the :attr:`message` field of the
|
|
|
|
record.
|
2010-12-12 09:20:55 -04:00
|
|
|
|
2010-12-19 08:56:57 -04:00
|
|
|
:param name: The name of the logger used to log the event represented by
|
2013-01-21 15:44:28 -04:00
|
|
|
this LogRecord. Note that this name will always have this
|
|
|
|
value, even though it may be emitted by a handler attached to
|
|
|
|
a different (ancestor) logger.
|
2010-12-19 08:56:57 -04:00
|
|
|
:param level: The numeric level of the logging event (one of DEBUG, INFO etc.)
|
2011-06-11 19:03:37 -03:00
|
|
|
Note that this is converted to *two* attributes of the LogRecord:
|
|
|
|
``levelno`` for the numeric value and ``levelname`` for the
|
|
|
|
corresponding level name.
|
2010-12-19 08:56:57 -04:00
|
|
|
:param pathname: The full pathname of the source file where the logging call
|
|
|
|
was made.
|
|
|
|
:param lineno: The line number in the source file where the logging call was
|
|
|
|
made.
|
|
|
|
:param msg: The event description message, possibly a format string with
|
|
|
|
placeholders for variable data.
|
|
|
|
:param args: Variable data to merge into the *msg* argument to obtain the
|
|
|
|
event description.
|
|
|
|
:param exc_info: An exception tuple with the current exception information,
|
2016-10-19 10:29:26 -03:00
|
|
|
or ``None`` if no exception information is available.
|
2010-12-19 08:56:57 -04:00
|
|
|
:param func: The name of the function or method from which the logging call
|
|
|
|
was invoked.
|
|
|
|
:param sinfo: A text string representing stack information from the base of
|
|
|
|
the stack in the current thread, up to the logging call.
|
2010-12-12 09:20:55 -04:00
|
|
|
|
2010-12-19 08:56:57 -04:00
|
|
|
.. method:: getMessage()
|
2010-12-12 09:20:55 -04:00
|
|
|
|
2010-12-19 08:56:57 -04:00
|
|
|
Returns the message for this :class:`LogRecord` instance after merging any
|
|
|
|
user-supplied arguments with the message. If the user-supplied message
|
|
|
|
argument to the logging call is not a string, :func:`str` is called on it to
|
|
|
|
convert it to a string. This allows use of user-defined classes as
|
|
|
|
messages, whose ``__str__`` method can return the actual format string to
|
|
|
|
be used.
|
2010-12-12 09:20:55 -04:00
|
|
|
|
2010-12-19 08:56:57 -04:00
|
|
|
.. versionchanged:: 3.2
|
2018-06-05 13:24:18 -03:00
|
|
|
The creation of a :class:`LogRecord` has been made more configurable by
|
2010-12-19 08:56:57 -04:00
|
|
|
providing a factory which is used to create the record. The factory can be
|
|
|
|
set using :func:`getLogRecordFactory` and :func:`setLogRecordFactory`
|
|
|
|
(see this for the factory's signature).
|
2010-12-12 09:20:55 -04:00
|
|
|
|
2010-12-19 08:56:57 -04:00
|
|
|
This functionality can be used to inject your own values into a
|
2018-06-05 13:24:18 -03:00
|
|
|
:class:`LogRecord` at creation time. You can use the following pattern::
|
2010-12-12 09:20:55 -04:00
|
|
|
|
2010-12-19 08:56:57 -04:00
|
|
|
old_factory = logging.getLogRecordFactory()
|
2010-12-12 09:20:55 -04:00
|
|
|
|
2010-12-19 08:56:57 -04:00
|
|
|
def record_factory(*args, **kwargs):
|
|
|
|
record = old_factory(*args, **kwargs)
|
|
|
|
record.custom_attribute = 0xdecafbad
|
|
|
|
return record
|
2010-12-12 09:20:55 -04:00
|
|
|
|
2010-12-19 08:56:57 -04:00
|
|
|
logging.setLogRecordFactory(record_factory)
|
2010-12-12 09:20:55 -04:00
|
|
|
|
2010-12-19 08:56:57 -04:00
|
|
|
With this pattern, multiple factories could be chained, and as long
|
|
|
|
as they don't overwrite each other's attributes or unintentionally
|
|
|
|
overwrite the standard attributes listed above, there should be no
|
|
|
|
surprises.
|
2010-12-12 09:20:55 -04:00
|
|
|
|
|
|
|
|
2010-12-19 08:56:57 -04:00
|
|
|
.. _logrecord-attributes:
|
2010-12-12 09:20:55 -04:00
|
|
|
|
2010-12-19 08:56:57 -04:00
|
|
|
LogRecord attributes
|
|
|
|
--------------------
|
2010-12-12 09:20:55 -04:00
|
|
|
|
2010-12-19 08:56:57 -04:00
|
|
|
The LogRecord has a number of attributes, most of which are derived from the
|
|
|
|
parameters to the constructor. (Note that the names do not always correspond
|
|
|
|
exactly between the LogRecord constructor parameters and the LogRecord
|
|
|
|
attributes.) These attributes can be used to merge data from the record into
|
|
|
|
the format string. The following table lists (in alphabetical order) the
|
|
|
|
attribute names, their meanings and the corresponding placeholder in a %-style
|
|
|
|
format string.
|
2010-12-12 09:20:55 -04:00
|
|
|
|
2010-12-19 08:56:57 -04:00
|
|
|
If you are using {}-formatting (:func:`str.format`), you can use
|
|
|
|
``{attrname}`` as the placeholder in the format string. If you are using
|
|
|
|
$-formatting (:class:`string.Template`), use the form ``${attrname}``. In
|
|
|
|
both cases, of course, replace ``attrname`` with the actual attribute name
|
|
|
|
you want to use.
|
2010-09-08 07:46:15 -03:00
|
|
|
|
2010-12-19 08:56:57 -04:00
|
|
|
In the case of {}-formatting, you can specify formatting flags by placing them
|
|
|
|
after the attribute name, separated from it with a colon. For example: a
|
|
|
|
placeholder of ``{msecs:03d}`` would format a millisecond value of ``4`` as
|
|
|
|
``004``. Refer to the :meth:`str.format` documentation for full details on
|
|
|
|
the options available to you.
|
2010-09-08 07:46:15 -03:00
|
|
|
|
2010-12-19 08:56:57 -04:00
|
|
|
+----------------+-------------------------+-----------------------------------------------+
|
|
|
|
| Attribute name | Format | Description |
|
|
|
|
+================+=========================+===============================================+
|
|
|
|
| args | You shouldn't need to | The tuple of arguments merged into ``msg`` to |
|
2015-11-24 19:21:15 -04:00
|
|
|
| | format this yourself. | produce ``message``, or a dict whose values |
|
|
|
|
| | | are used for the merge (when there is only one|
|
|
|
|
| | | argument, and it is a dictionary). |
|
2010-12-19 08:56:57 -04:00
|
|
|
+----------------+-------------------------+-----------------------------------------------+
|
|
|
|
| asctime | ``%(asctime)s`` | Human-readable time when the |
|
|
|
|
| | | :class:`LogRecord` was created. By default |
|
|
|
|
| | | this is of the form '2003-07-08 16:49:45,896' |
|
|
|
|
| | | (the numbers after the comma are millisecond |
|
|
|
|
| | | portion of the time). |
|
|
|
|
+----------------+-------------------------+-----------------------------------------------+
|
|
|
|
| created | ``%(created)f`` | Time when the :class:`LogRecord` was created |
|
|
|
|
| | | (as returned by :func:`time.time`). |
|
|
|
|
+----------------+-------------------------+-----------------------------------------------+
|
|
|
|
| exc_info | You shouldn't need to | Exception tuple (à la ``sys.exc_info``) or, |
|
2016-10-19 13:37:20 -03:00
|
|
|
| | format this yourself. | if no exception has occurred, ``None``. |
|
2010-12-19 08:56:57 -04:00
|
|
|
+----------------+-------------------------+-----------------------------------------------+
|
|
|
|
| filename | ``%(filename)s`` | Filename portion of ``pathname``. |
|
|
|
|
+----------------+-------------------------+-----------------------------------------------+
|
|
|
|
| funcName | ``%(funcName)s`` | Name of function containing the logging call. |
|
|
|
|
+----------------+-------------------------+-----------------------------------------------+
|
|
|
|
| levelname | ``%(levelname)s`` | Text logging level for the message |
|
|
|
|
| | | (``'DEBUG'``, ``'INFO'``, ``'WARNING'``, |
|
|
|
|
| | | ``'ERROR'``, ``'CRITICAL'``). |
|
|
|
|
+----------------+-------------------------+-----------------------------------------------+
|
|
|
|
| levelno | ``%(levelno)s`` | Numeric logging level for the message |
|
|
|
|
| | | (:const:`DEBUG`, :const:`INFO`, |
|
|
|
|
| | | :const:`WARNING`, :const:`ERROR`, |
|
|
|
|
| | | :const:`CRITICAL`). |
|
|
|
|
+----------------+-------------------------+-----------------------------------------------+
|
|
|
|
| lineno | ``%(lineno)d`` | Source line number where the logging call was |
|
|
|
|
| | | issued (if available). |
|
|
|
|
+----------------+-------------------------+-----------------------------------------------+
|
2017-10-27 04:06:20 -03:00
|
|
|
| message | ``%(message)s`` | The logged message, computed as ``msg % |
|
|
|
|
| | | args``. This is set when |
|
|
|
|
| | | :meth:`Formatter.format` is invoked. |
|
|
|
|
+----------------+-------------------------+-----------------------------------------------+
|
2010-12-19 08:56:57 -04:00
|
|
|
| module | ``%(module)s`` | Module (name portion of ``filename``). |
|
|
|
|
+----------------+-------------------------+-----------------------------------------------+
|
|
|
|
| msecs | ``%(msecs)d`` | Millisecond portion of the time when the |
|
|
|
|
| | | :class:`LogRecord` was created. |
|
|
|
|
+----------------+-------------------------+-----------------------------------------------+
|
|
|
|
| msg | You shouldn't need to | The format string passed in the original |
|
|
|
|
| | format this yourself. | logging call. Merged with ``args`` to |
|
|
|
|
| | | produce ``message``, or an arbitrary object |
|
|
|
|
| | | (see :ref:`arbitrary-object-messages`). |
|
|
|
|
+----------------+-------------------------+-----------------------------------------------+
|
|
|
|
| name | ``%(name)s`` | Name of the logger used to log the call. |
|
|
|
|
+----------------+-------------------------+-----------------------------------------------+
|
|
|
|
| pathname | ``%(pathname)s`` | Full pathname of the source file where the |
|
|
|
|
| | | logging call was issued (if available). |
|
|
|
|
+----------------+-------------------------+-----------------------------------------------+
|
|
|
|
| process | ``%(process)d`` | Process ID (if available). |
|
|
|
|
+----------------+-------------------------+-----------------------------------------------+
|
|
|
|
| processName | ``%(processName)s`` | Process name (if available). |
|
|
|
|
+----------------+-------------------------+-----------------------------------------------+
|
|
|
|
| relativeCreated| ``%(relativeCreated)d`` | Time in milliseconds when the LogRecord was |
|
|
|
|
| | | created, relative to the time the logging |
|
|
|
|
| | | module was loaded. |
|
|
|
|
+----------------+-------------------------+-----------------------------------------------+
|
|
|
|
| stack_info | You shouldn't need to | Stack frame information (where available) |
|
|
|
|
| | format this yourself. | from the bottom of the stack in the current |
|
|
|
|
| | | thread, up to and including the stack frame |
|
|
|
|
| | | of the logging call which resulted in the |
|
|
|
|
| | | creation of this record. |
|
|
|
|
+----------------+-------------------------+-----------------------------------------------+
|
|
|
|
| thread | ``%(thread)d`` | Thread ID (if available). |
|
|
|
|
+----------------+-------------------------+-----------------------------------------------+
|
|
|
|
| threadName | ``%(threadName)s`` | Thread name (if available). |
|
|
|
|
+----------------+-------------------------+-----------------------------------------------+
|
Merged revisions 74277,74321,74323,74326,74355,74465,74467,74488,74492,74513,74531,74549,74553,74625,74632,74643-74644,74647,74652,74666,74671,74727,74739 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk
........
r74277 | sean.reifschneider | 2009-08-01 18:54:55 -0500 (Sat, 01 Aug 2009) | 3 lines
- Issue #6624: yArg_ParseTuple with "s" format when parsing argument with
NUL: Bogus TypeError detail string.
........
r74321 | guilherme.polo | 2009-08-05 11:51:41 -0500 (Wed, 05 Aug 2009) | 1 line
Easier reference to find (at least while svn continues being used).
........
r74323 | guilherme.polo | 2009-08-05 18:48:26 -0500 (Wed, 05 Aug 2009) | 1 line
Typo.
........
r74326 | jesse.noller | 2009-08-05 21:05:56 -0500 (Wed, 05 Aug 2009) | 1 line
Fix issue 4660: spurious task_done errors in multiprocessing, remove doc note for from_address
........
r74355 | gregory.p.smith | 2009-08-12 12:02:37 -0500 (Wed, 12 Aug 2009) | 2 lines
comment typo fix
........
r74465 | vinay.sajip | 2009-08-15 18:23:12 -0500 (Sat, 15 Aug 2009) | 1 line
Added section on logging to one file from multiple processes.
........
r74467 | vinay.sajip | 2009-08-15 18:34:47 -0500 (Sat, 15 Aug 2009) | 1 line
Refined section on logging to one file from multiple processes.
........
r74488 | vinay.sajip | 2009-08-17 08:14:37 -0500 (Mon, 17 Aug 2009) | 1 line
Further refined section on logging to one file from multiple processes.
........
r74492 | r.david.murray | 2009-08-17 14:26:49 -0500 (Mon, 17 Aug 2009) | 2 lines
Issue 6685: 'toupper' -> 'upper' in cgi doc example explanation.
........
r74513 | skip.montanaro | 2009-08-18 09:37:52 -0500 (Tue, 18 Aug 2009) | 1 line
missing module ref (issue6723)
........
r74531 | vinay.sajip | 2009-08-20 17:04:32 -0500 (Thu, 20 Aug 2009) | 1 line
Added section on exceptions raised during logging.
........
r74549 | benjamin.peterson | 2009-08-24 12:42:36 -0500 (Mon, 24 Aug 2009) | 1 line
fix pdf building by teaching latex the right encoding package
........
r74553 | r.david.murray | 2009-08-26 20:04:59 -0500 (Wed, 26 Aug 2009) | 2 lines
Remove leftover text from end of sentence.
........
r74625 | benjamin.peterson | 2009-09-01 17:27:57 -0500 (Tue, 01 Sep 2009) | 1 line
remove the check that classmethod's argument is a callable
........
r74632 | georg.brandl | 2009-09-03 02:27:26 -0500 (Thu, 03 Sep 2009) | 1 line
#6828: fix wrongly highlighted blocks.
........
r74643 | georg.brandl | 2009-09-04 01:59:20 -0500 (Fri, 04 Sep 2009) | 2 lines
Issue #2666: Handle BROWSER environment variable properly for unknown browser names in the webbrowser module.
........
r74644 | georg.brandl | 2009-09-04 02:55:14 -0500 (Fri, 04 Sep 2009) | 1 line
#5047: remove Monterey support from configure.
........
r74647 | georg.brandl | 2009-09-04 03:17:04 -0500 (Fri, 04 Sep 2009) | 2 lines
Issue #5275: In Cookie's Cookie.load(), properly handle non-string arguments as documented.
........
r74652 | georg.brandl | 2009-09-04 06:25:37 -0500 (Fri, 04 Sep 2009) | 1 line
#6756: add some info about the "acct" parameter.
........
r74666 | georg.brandl | 2009-09-05 04:04:09 -0500 (Sat, 05 Sep 2009) | 1 line
#6841: remove duplicated word.
........
r74671 | georg.brandl | 2009-09-05 11:47:17 -0500 (Sat, 05 Sep 2009) | 1 line
#6843: add link from filterwarnings to where the meaning of the arguments is covered.
........
r74727 | benjamin.peterson | 2009-09-08 18:04:22 -0500 (Tue, 08 Sep 2009) | 1 line
#6865 fix ref counting in initialization of pwd module
........
r74739 | georg.brandl | 2009-09-11 02:55:20 -0500 (Fri, 11 Sep 2009) | 1 line
Move function back to its section.
........
2009-09-11 19:24:02 -03:00
|
|
|
|
2012-07-20 05:50:18 -03:00
|
|
|
.. versionchanged:: 3.1
|
|
|
|
*processName* was added.
|
|
|
|
|
Merged revisions 74779-74786,74793,74795,74811,74860-74861,74863,74876,74886,74896,74901,74903,74908,74912,74930,74933,74943,74946,74952-74955,75015,75019,75032,75068,75076,75095,75098,75102,75129,75139,75230 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk
........
r74779 | michael.foord | 2009-09-13 11:13:36 -0500 (Sun, 13 Sep 2009) | 1 line
Change to tutorial wording for reading text / binary files on Windows. Issue #6301.
........
r74780 | michael.foord | 2009-09-13 11:40:02 -0500 (Sun, 13 Sep 2009) | 1 line
Objects that compare equal automatically pass or fail assertAlmostEqual and assertNotAlmostEqual tests on unittest.TestCase. Issue 6567.
........
r74781 | michael.foord | 2009-09-13 11:46:19 -0500 (Sun, 13 Sep 2009) | 1 line
Note that sys._getframe is not guaranteed to exist in all implementations of Python, and a corresponding note in inspect.currentframe. Issue 6712.
........
r74782 | michael.foord | 2009-09-13 12:07:46 -0500 (Sun, 13 Sep 2009) | 1 line
Tutorial tweaks. Issue 6849.
........
r74783 | michael.foord | 2009-09-13 12:28:35 -0500 (Sun, 13 Sep 2009) | 1 line
unittest.TestLoader.loadTestsFromName honors the loader suiteClass attribute. Issue 6866.
........
r74784 | georg.brandl | 2009-09-13 13:15:07 -0500 (Sun, 13 Sep 2009) | 1 line
Typo fix.
........
r74785 | michael.foord | 2009-09-13 14:07:03 -0500 (Sun, 13 Sep 2009) | 1 line
Test discovery in unittest will only attempt to import modules that are importable; i.e. their names are valid Python identifiers. If an import fails during discovery this will be recorded as an error and test discovery will continue. Issue 6568.
........
r74786 | michael.foord | 2009-09-13 14:08:18 -0500 (Sun, 13 Sep 2009) | 1 line
Remove an extraneous space in unittest documentation.
........
r74793 | georg.brandl | 2009-09-14 09:50:47 -0500 (Mon, 14 Sep 2009) | 1 line
#6908: fix association of hashlib hash attributes.
........
r74795 | benjamin.peterson | 2009-09-14 22:36:26 -0500 (Mon, 14 Sep 2009) | 1 line
Py_SetPythonHome uses static storage #6913
........
r74811 | georg.brandl | 2009-09-15 15:26:59 -0500 (Tue, 15 Sep 2009) | 1 line
Add Armin Ronacher.
........
r74860 | benjamin.peterson | 2009-09-16 21:46:54 -0500 (Wed, 16 Sep 2009) | 1 line
kill bare except
........
r74861 | benjamin.peterson | 2009-09-16 22:18:28 -0500 (Wed, 16 Sep 2009) | 1 line
pep 8 defaults
........
r74863 | benjamin.peterson | 2009-09-16 22:27:33 -0500 (Wed, 16 Sep 2009) | 1 line
rationalize a bit
........
r74876 | georg.brandl | 2009-09-17 11:15:53 -0500 (Thu, 17 Sep 2009) | 1 line
#6932: remove paragraph that advises relying on __del__ being called.
........
r74886 | benjamin.peterson | 2009-09-17 16:33:46 -0500 (Thu, 17 Sep 2009) | 1 line
use macros
........
r74896 | georg.brandl | 2009-09-18 02:22:41 -0500 (Fri, 18 Sep 2009) | 1 line
#6936: for interactive use, quit() is just fine.
........
r74901 | georg.brandl | 2009-09-18 04:14:52 -0500 (Fri, 18 Sep 2009) | 1 line
#6905: use better exception messages in inspect when the argument is of the wrong type.
........
r74903 | georg.brandl | 2009-09-18 04:18:27 -0500 (Fri, 18 Sep 2009) | 1 line
#6938: "ident" is always a string, so use a format code which works.
........
r74908 | georg.brandl | 2009-09-18 08:57:11 -0500 (Fri, 18 Sep 2009) | 1 line
Use str.format() to fix beginner's mistake with %-style string formatting.
........
r74912 | georg.brandl | 2009-09-18 11:19:56 -0500 (Fri, 18 Sep 2009) | 1 line
Optimize optimization and fix method name in docstring.
........
r74930 | georg.brandl | 2009-09-18 16:21:41 -0500 (Fri, 18 Sep 2009) | 1 line
#6925: rewrite docs for locals() and vars() a bit.
........
r74933 | georg.brandl | 2009-09-18 16:35:59 -0500 (Fri, 18 Sep 2009) | 1 line
#6930: clarify description about byteorder handling in UTF decoder routines.
........
r74943 | georg.brandl | 2009-09-19 02:35:07 -0500 (Sat, 19 Sep 2009) | 1 line
#6944: the argument to PyArg_ParseTuple should be a tuple, otherwise a SystemError is set. Also clean up another usage of PyArg_ParseTuple.
........
r74946 | georg.brandl | 2009-09-19 03:43:16 -0500 (Sat, 19 Sep 2009) | 1 line
Update bug tracker reference.
........
r74952 | georg.brandl | 2009-09-19 05:42:34 -0500 (Sat, 19 Sep 2009) | 1 line
#6946: fix duplicate index entries for datetime classes.
........
r74953 | georg.brandl | 2009-09-19 07:04:16 -0500 (Sat, 19 Sep 2009) | 1 line
Fix references to threading.enumerate().
........
r74954 | georg.brandl | 2009-09-19 08:13:56 -0500 (Sat, 19 Sep 2009) | 1 line
Add Doug.
........
r74955 | georg.brandl | 2009-09-19 08:20:49 -0500 (Sat, 19 Sep 2009) | 1 line
Add Mark Summerfield.
........
r75015 | georg.brandl | 2009-09-22 05:55:08 -0500 (Tue, 22 Sep 2009) | 1 line
Fix encoding name.
........
r75019 | vinay.sajip | 2009-09-22 12:23:41 -0500 (Tue, 22 Sep 2009) | 1 line
Fixed a typo, and added sections on optimization and using arbitrary objects as messages.
........
r75032 | benjamin.peterson | 2009-09-22 17:15:28 -0500 (Tue, 22 Sep 2009) | 1 line
fix typos/rephrase
........
r75068 | benjamin.peterson | 2009-09-25 21:57:59 -0500 (Fri, 25 Sep 2009) | 1 line
comment out ugly xxx
........
r75076 | vinay.sajip | 2009-09-26 09:53:32 -0500 (Sat, 26 Sep 2009) | 1 line
Tidied up name of parameter in StreamHandler
........
r75095 | michael.foord | 2009-09-27 14:15:41 -0500 (Sun, 27 Sep 2009) | 1 line
Test creation moved from TestProgram.parseArgs to TestProgram.createTests exclusively. Issue 6956.
........
r75098 | michael.foord | 2009-09-27 15:08:23 -0500 (Sun, 27 Sep 2009) | 1 line
Documentation improvement for load_tests protocol in unittest. Issue 6515.
........
r75102 | skip.montanaro | 2009-09-27 21:12:27 -0500 (Sun, 27 Sep 2009) | 3 lines
Patch from Thomas Barr so that csv.Sniffer will set doublequote property.
Closes issue 6606.
........
r75129 | vinay.sajip | 2009-09-29 02:08:54 -0500 (Tue, 29 Sep 2009) | 1 line
Issue #7014: logging: Improved IronPython 2.6 compatibility.
........
r75139 | raymond.hettinger | 2009-09-29 13:53:24 -0500 (Tue, 29 Sep 2009) | 3 lines
Issue 7008: Better document str.title and show how to work around the apostrophe problem.
........
r75230 | benjamin.peterson | 2009-10-04 08:38:38 -0500 (Sun, 04 Oct 2009) | 1 line
test logging
........
2009-10-04 11:49:41 -03:00
|
|
|
|
2010-12-19 08:56:57 -04:00
|
|
|
.. _logger-adapter:
|
2007-08-15 11:28:22 -03:00
|
|
|
|
2010-12-19 08:56:57 -04:00
|
|
|
LoggerAdapter Objects
|
|
|
|
---------------------
|
2007-08-15 11:28:22 -03:00
|
|
|
|
2010-12-19 08:56:57 -04:00
|
|
|
:class:`LoggerAdapter` instances are used to conveniently pass contextual
|
2013-12-23 12:20:51 -04:00
|
|
|
information into logging calls. For a usage example, see the section on
|
2010-12-19 08:56:57 -04:00
|
|
|
:ref:`adding contextual information to your logging output <context-info>`.
|
2007-08-15 11:28:22 -03:00
|
|
|
|
2010-12-19 08:56:57 -04:00
|
|
|
.. class:: LoggerAdapter(logger, extra)
|
2007-08-15 11:28:22 -03:00
|
|
|
|
2010-12-19 08:56:57 -04:00
|
|
|
Returns an instance of :class:`LoggerAdapter` initialized with an
|
|
|
|
underlying :class:`Logger` instance and a dict-like object.
|
2007-08-15 11:28:22 -03:00
|
|
|
|
2010-12-19 08:56:57 -04:00
|
|
|
.. method:: process(msg, kwargs)
|
2007-08-15 11:28:22 -03:00
|
|
|
|
2010-12-19 08:56:57 -04:00
|
|
|
Modifies the message and/or keyword arguments passed to a logging call in
|
|
|
|
order to insert contextual information. This implementation takes the object
|
|
|
|
passed as *extra* to the constructor and adds it to *kwargs* using key
|
|
|
|
'extra'. The return value is a (*msg*, *kwargs*) tuple which has the
|
|
|
|
(possibly modified) versions of the arguments passed in.
|
2007-08-15 11:28:22 -03:00
|
|
|
|
2010-12-19 08:56:57 -04:00
|
|
|
In addition to the above, :class:`LoggerAdapter` supports the following
|
2013-10-30 22:10:30 -03:00
|
|
|
methods of :class:`Logger`: :meth:`~Logger.debug`, :meth:`~Logger.info`,
|
|
|
|
:meth:`~Logger.warning`, :meth:`~Logger.error`, :meth:`~Logger.exception`,
|
|
|
|
:meth:`~Logger.critical`, :meth:`~Logger.log`, :meth:`~Logger.isEnabledFor`,
|
|
|
|
:meth:`~Logger.getEffectiveLevel`, :meth:`~Logger.setLevel` and
|
|
|
|
:meth:`~Logger.hasHandlers`. These methods have the same signatures as their
|
2010-12-19 08:56:57 -04:00
|
|
|
counterparts in :class:`Logger`, so you can use the two types of instances
|
|
|
|
interchangeably.
|
2007-08-15 11:28:22 -03:00
|
|
|
|
2010-12-19 08:56:57 -04:00
|
|
|
.. versionchanged:: 3.2
|
2013-10-30 22:10:30 -03:00
|
|
|
The :meth:`~Logger.isEnabledFor`, :meth:`~Logger.getEffectiveLevel`,
|
|
|
|
:meth:`~Logger.setLevel` and :meth:`~Logger.hasHandlers` methods were added
|
|
|
|
to :class:`LoggerAdapter`. These methods delegate to the underlying logger.
|
2007-08-15 11:28:22 -03:00
|
|
|
|
|
|
|
|
2010-12-19 08:56:57 -04:00
|
|
|
Thread Safety
|
|
|
|
-------------
|
2007-08-15 11:28:22 -03:00
|
|
|
|
2010-12-19 08:56:57 -04:00
|
|
|
The logging module is intended to be thread-safe without any special work
|
|
|
|
needing to be done by its clients. It achieves this though using threading
|
|
|
|
locks; there is one lock to serialize access to the module's shared data, and
|
|
|
|
each handler also creates a lock to serialize access to its underlying I/O.
|
2007-08-15 11:28:22 -03:00
|
|
|
|
2010-12-19 08:56:57 -04:00
|
|
|
If you are implementing asynchronous signal handlers using the :mod:`signal`
|
|
|
|
module, you may not be able to use logging from within such handlers. This is
|
|
|
|
because lock implementations in the :mod:`threading` module are not always
|
|
|
|
re-entrant, and so cannot be invoked from such signal handlers.
|
2007-08-15 11:28:22 -03:00
|
|
|
|
|
|
|
|
2010-12-19 08:56:57 -04:00
|
|
|
Module-Level Functions
|
|
|
|
----------------------
|
2007-08-15 11:28:22 -03:00
|
|
|
|
2018-10-30 21:26:06 -03:00
|
|
|
In addition to the classes described above, there are a number of module-level
|
2010-12-19 08:56:57 -04:00
|
|
|
functions.
|
2007-08-15 11:28:22 -03:00
|
|
|
|
|
|
|
|
2010-12-19 08:56:57 -04:00
|
|
|
.. function:: getLogger(name=None)
|
2007-08-15 11:28:22 -03:00
|
|
|
|
2010-12-19 08:56:57 -04:00
|
|
|
Return a logger with the specified name or, if name is ``None``, return a
|
|
|
|
logger which is the root logger of the hierarchy. If specified, the name is
|
|
|
|
typically a dot-separated hierarchical name like *'a'*, *'a.b'* or *'a.b.c.d'*.
|
|
|
|
Choice of these names is entirely up to the developer who is using logging.
|
2007-08-15 11:28:22 -03:00
|
|
|
|
2010-12-19 08:56:57 -04:00
|
|
|
All calls to this function with a given name return the same logger instance.
|
|
|
|
This means that logger instances never need to be passed between different parts
|
|
|
|
of an application.
|
2007-08-15 11:28:22 -03:00
|
|
|
|
|
|
|
|
2010-12-19 08:56:57 -04:00
|
|
|
.. function:: getLoggerClass()
|
2007-08-15 11:28:22 -03:00
|
|
|
|
2010-12-19 08:56:57 -04:00
|
|
|
Return either the standard :class:`Logger` class, or the last class passed to
|
|
|
|
:func:`setLoggerClass`. This function may be called from within a new class
|
2013-11-15 16:58:13 -04:00
|
|
|
definition, to ensure that installing a customized :class:`Logger` class will
|
|
|
|
not undo customizations already applied by other code. For example::
|
2007-08-15 11:28:22 -03:00
|
|
|
|
2010-12-19 08:56:57 -04:00
|
|
|
class MyLogger(logging.getLoggerClass()):
|
|
|
|
# ... override behaviour here
|
2007-08-15 11:28:22 -03:00
|
|
|
|
|
|
|
|
2010-12-19 08:56:57 -04:00
|
|
|
.. function:: getLogRecordFactory()
|
2007-08-15 11:28:22 -03:00
|
|
|
|
2010-12-19 08:56:57 -04:00
|
|
|
Return a callable which is used to create a :class:`LogRecord`.
|
2007-08-15 11:28:22 -03:00
|
|
|
|
2010-12-19 08:56:57 -04:00
|
|
|
.. versionadded:: 3.2
|
|
|
|
This function has been provided, along with :func:`setLogRecordFactory`,
|
|
|
|
to allow developers more control over how the :class:`LogRecord`
|
|
|
|
representing a logging event is constructed.
|
2007-08-15 11:28:22 -03:00
|
|
|
|
2010-12-19 08:56:57 -04:00
|
|
|
See :func:`setLogRecordFactory` for more information about the how the
|
|
|
|
factory is called.
|
2007-08-15 11:28:22 -03:00
|
|
|
|
2010-12-19 08:56:57 -04:00
|
|
|
.. function:: debug(msg, *args, **kwargs)
|
2007-08-15 11:28:22 -03:00
|
|
|
|
2010-12-19 08:56:57 -04:00
|
|
|
Logs a message with level :const:`DEBUG` on the root logger. The *msg* is the
|
|
|
|
message format string, and the *args* are the arguments which are merged into
|
|
|
|
*msg* using the string formatting operator. (Note that this means that you can
|
|
|
|
use keywords in the format string, together with a single dictionary argument.)
|
2007-08-15 11:28:22 -03:00
|
|
|
|
2010-12-19 08:56:57 -04:00
|
|
|
There are three keyword arguments in *kwargs* which are inspected: *exc_info*
|
|
|
|
which, if it does not evaluate as false, causes exception information to be
|
|
|
|
added to the logging message. If an exception tuple (in the format returned by
|
2018-10-18 07:45:58 -03:00
|
|
|
:func:`sys.exc_info`) or an exception instance is provided, it is used;
|
|
|
|
otherwise, :func:`sys.exc_info` is called to get the exception information.
|
2007-08-15 11:28:22 -03:00
|
|
|
|
2010-12-19 08:56:57 -04:00
|
|
|
The second optional keyword argument is *stack_info*, which defaults to
|
2013-11-29 06:17:13 -04:00
|
|
|
``False``. If true, stack information is added to the logging
|
2010-12-19 08:56:57 -04:00
|
|
|
message, including the actual logging call. Note that this is not the same
|
|
|
|
stack information as that displayed through specifying *exc_info*: The
|
|
|
|
former is stack frames from the bottom of the stack up to the logging call
|
|
|
|
in the current thread, whereas the latter is information about stack frames
|
|
|
|
which have been unwound, following an exception, while searching for
|
|
|
|
exception handlers.
|
2007-08-15 11:28:22 -03:00
|
|
|
|
2010-12-19 08:56:57 -04:00
|
|
|
You can specify *stack_info* independently of *exc_info*, e.g. to just show
|
|
|
|
how you got to a certain point in your code, even when no exceptions were
|
2018-04-08 13:18:04 -03:00
|
|
|
raised. The stack frames are printed following a header line which says:
|
|
|
|
|
|
|
|
.. code-block:: none
|
2007-08-15 11:28:22 -03:00
|
|
|
|
2010-12-19 08:56:57 -04:00
|
|
|
Stack (most recent call last):
|
2007-08-15 11:28:22 -03:00
|
|
|
|
2011-10-22 14:29:48 -03:00
|
|
|
This mimics the ``Traceback (most recent call last):`` which is used when
|
2010-12-19 08:56:57 -04:00
|
|
|
displaying exception frames.
|
2007-08-15 11:28:22 -03:00
|
|
|
|
2010-12-19 08:56:57 -04:00
|
|
|
The third optional keyword argument is *extra* which can be used to pass a
|
|
|
|
dictionary which is used to populate the __dict__ of the LogRecord created for
|
|
|
|
the logging event with user-defined attributes. These custom attributes can then
|
|
|
|
be used as you like. For example, they could be incorporated into logged
|
|
|
|
messages. For example::
|
2007-08-15 11:28:22 -03:00
|
|
|
|
2010-12-19 08:56:57 -04:00
|
|
|
FORMAT = '%(asctime)-15s %(clientip)s %(user)-8s %(message)s'
|
|
|
|
logging.basicConfig(format=FORMAT)
|
|
|
|
d = {'clientip': '192.168.0.1', 'user': 'fbloggs'}
|
|
|
|
logging.warning('Protocol problem: %s', 'connection reset', extra=d)
|
2007-08-15 11:28:22 -03:00
|
|
|
|
2018-04-08 13:18:04 -03:00
|
|
|
would print something like:
|
|
|
|
|
|
|
|
.. code-block:: none
|
2007-08-15 11:28:22 -03:00
|
|
|
|
2010-12-19 08:56:57 -04:00
|
|
|
2006-02-08 22:20:02,165 192.168.0.1 fbloggs Protocol problem: connection reset
|
2007-08-15 11:28:22 -03:00
|
|
|
|
2010-12-19 08:56:57 -04:00
|
|
|
The keys in the dictionary passed in *extra* should not clash with the keys used
|
|
|
|
by the logging system. (See the :class:`Formatter` documentation for more
|
|
|
|
information on which keys are used by the logging system.)
|
2007-08-15 11:28:22 -03:00
|
|
|
|
2010-12-19 08:56:57 -04:00
|
|
|
If you choose to use these attributes in logged messages, you need to exercise
|
|
|
|
some care. In the above example, for instance, the :class:`Formatter` has been
|
|
|
|
set up with a format string which expects 'clientip' and 'user' in the attribute
|
|
|
|
dictionary of the LogRecord. If these are missing, the message will not be
|
|
|
|
logged because a string formatting exception will occur. So in this case, you
|
|
|
|
always need to pass the *extra* dictionary with these keys.
|
2007-08-15 11:28:22 -03:00
|
|
|
|
2010-12-19 08:56:57 -04:00
|
|
|
While this might be annoying, this feature is intended for use in specialized
|
|
|
|
circumstances, such as multi-threaded servers where the same code executes in
|
|
|
|
many contexts, and interesting conditions which arise are dependent on this
|
|
|
|
context (such as remote client IP address and authenticated user name, in the
|
|
|
|
above example). In such circumstances, it is likely that specialized
|
|
|
|
:class:`Formatter`\ s would be used with particular :class:`Handler`\ s.
|
2007-08-15 11:28:22 -03:00
|
|
|
|
2018-07-05 21:01:16 -03:00
|
|
|
.. versionchanged:: 3.2
|
2010-12-19 08:56:57 -04:00
|
|
|
The *stack_info* parameter was added.
|
2007-08-15 11:28:22 -03:00
|
|
|
|
2010-12-19 08:56:57 -04:00
|
|
|
.. function:: info(msg, *args, **kwargs)
|
2007-08-15 11:28:22 -03:00
|
|
|
|
2010-12-19 08:56:57 -04:00
|
|
|
Logs a message with level :const:`INFO` on the root logger. The arguments are
|
|
|
|
interpreted as for :func:`debug`.
|
2007-08-15 11:28:22 -03:00
|
|
|
|
|
|
|
|
2010-12-19 08:56:57 -04:00
|
|
|
.. function:: warning(msg, *args, **kwargs)
|
2007-08-15 11:28:22 -03:00
|
|
|
|
2011-10-21 03:33:42 -03:00
|
|
|
Logs a message with level :const:`WARNING` on the root logger. The arguments
|
|
|
|
are interpreted as for :func:`debug`.
|
|
|
|
|
2011-10-22 14:29:48 -03:00
|
|
|
.. note:: There is an obsolete function ``warn`` which is functionally
|
|
|
|
identical to ``warning``. As ``warn`` is deprecated, please do not use
|
|
|
|
it - use ``warning`` instead.
|
2010-06-29 12:31:15 -03:00
|
|
|
|
2007-08-15 11:28:22 -03:00
|
|
|
|
2010-12-19 08:56:57 -04:00
|
|
|
.. function:: error(msg, *args, **kwargs)
|
2007-08-15 11:28:22 -03:00
|
|
|
|
2010-12-19 08:56:57 -04:00
|
|
|
Logs a message with level :const:`ERROR` on the root logger. The arguments are
|
|
|
|
interpreted as for :func:`debug`.
|
2007-08-15 11:28:22 -03:00
|
|
|
|
Merged revisions 76847,76851,76869,76882,76891-76892,76924,77007,77070,77092,77096,77120,77126,77155 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk
........
r76847 | benjamin.peterson | 2009-12-14 21:25:27 -0600 (Mon, 14 Dec 2009) | 1 line
adverb
........
r76851 | benjamin.peterson | 2009-12-15 21:28:52 -0600 (Tue, 15 Dec 2009) | 1 line
remove lib2to3 resource
........
r76869 | vinay.sajip | 2009-12-17 08:52:00 -0600 (Thu, 17 Dec 2009) | 1 line
Issue #7529: logging: Minor correction to documentation.
........
r76882 | georg.brandl | 2009-12-19 11:30:28 -0600 (Sat, 19 Dec 2009) | 1 line
#7527: use standard versionadded tags.
........
r76891 | georg.brandl | 2009-12-19 12:16:31 -0600 (Sat, 19 Dec 2009) | 1 line
#7479: add note about function availability on Unices.
........
r76892 | georg.brandl | 2009-12-19 12:20:18 -0600 (Sat, 19 Dec 2009) | 1 line
#7480: remove tautology.
........
r76924 | georg.brandl | 2009-12-20 08:28:05 -0600 (Sun, 20 Dec 2009) | 1 line
Small indentation fix.
........
r77007 | gregory.p.smith | 2009-12-23 03:31:11 -0600 (Wed, 23 Dec 2009) | 3 lines
Fix possible integer overflow in lchown and fchown functions. For issue1747858.
........
r77070 | amaury.forgeotdarc | 2009-12-27 14:06:44 -0600 (Sun, 27 Dec 2009) | 2 lines
Fix a typo in comment
........
r77092 | georg.brandl | 2009-12-28 02:48:24 -0600 (Mon, 28 Dec 2009) | 1 line
#7404: remove reference to non-existing example files.
........
r77096 | benjamin.peterson | 2009-12-28 14:51:17 -0600 (Mon, 28 Dec 2009) | 1 line
document new fix_callable behavior
........
r77120 | georg.brandl | 2009-12-29 15:09:17 -0600 (Tue, 29 Dec 2009) | 1 line
#7595: fix typo in argument default constant.
........
r77126 | amaury.forgeotdarc | 2009-12-29 17:06:17 -0600 (Tue, 29 Dec 2009) | 2 lines
#7579: Add docstrings to the msvcrt module
........
r77155 | georg.brandl | 2009-12-30 13:03:00 -0600 (Wed, 30 Dec 2009) | 1 line
We only support Windows NT derivatives now.
........
2009-12-30 23:11:23 -04:00
|
|
|
|
2010-12-19 08:56:57 -04:00
|
|
|
.. function:: critical(msg, *args, **kwargs)
|
2007-08-15 11:28:22 -03:00
|
|
|
|
2010-12-19 08:56:57 -04:00
|
|
|
Logs a message with level :const:`CRITICAL` on the root logger. The arguments
|
|
|
|
are interpreted as for :func:`debug`.
|
2007-08-15 11:28:22 -03:00
|
|
|
|
|
|
|
|
2014-04-15 19:13:12 -03:00
|
|
|
.. function:: exception(msg, *args, **kwargs)
|
2010-06-29 12:31:15 -03:00
|
|
|
|
2010-12-19 08:56:57 -04:00
|
|
|
Logs a message with level :const:`ERROR` on the root logger. The arguments are
|
|
|
|
interpreted as for :func:`debug`. Exception info is added to the logging
|
|
|
|
message. This function should only be called from an exception handler.
|
2007-08-15 11:28:22 -03:00
|
|
|
|
2010-12-19 08:56:57 -04:00
|
|
|
.. function:: log(level, msg, *args, **kwargs)
|
2007-08-15 11:28:22 -03:00
|
|
|
|
2010-12-19 08:56:57 -04:00
|
|
|
Logs a message with level *level* on the root logger. The other arguments are
|
|
|
|
interpreted as for :func:`debug`.
|
2007-08-15 11:28:22 -03:00
|
|
|
|
2014-01-15 09:28:39 -04:00
|
|
|
.. note:: The above module-level convenience functions, which delegate to the
|
|
|
|
root logger, call :func:`basicConfig` to ensure that at least one handler
|
|
|
|
is available. Because of this, they should *not* be used in threads,
|
|
|
|
in versions of Python earlier than 2.7.1 and 3.2, unless at least one
|
|
|
|
handler has been added to the root logger *before* the threads are
|
|
|
|
started. In earlier versions of Python, due to a thread safety shortcoming
|
|
|
|
in :func:`basicConfig`, this can (under rare circumstances) lead to
|
|
|
|
handlers being added multiple times to the root logger, which can in turn
|
|
|
|
lead to multiple messages for the same event.
|
2007-08-15 11:28:22 -03:00
|
|
|
|
2019-10-04 04:55:14 -03:00
|
|
|
.. function:: disable(level=CRITICAL)
|
2007-08-15 11:28:22 -03:00
|
|
|
|
2019-10-04 04:55:14 -03:00
|
|
|
Provides an overriding level *level* for all loggers which takes precedence over
|
2010-12-19 08:56:57 -04:00
|
|
|
the logger's own level. When the need arises to temporarily throttle logging
|
|
|
|
output down across the whole application, this function can be useful. Its
|
2019-10-04 04:55:14 -03:00
|
|
|
effect is to disable all logging calls of severity *level* and below, so that
|
2010-12-19 08:56:57 -04:00
|
|
|
if you call it with a value of INFO, then all INFO and DEBUG events would be
|
|
|
|
discarded, whereas those of severity WARNING and above would be processed
|
2013-11-30 18:45:29 -04:00
|
|
|
according to the logger's effective level. If
|
|
|
|
``logging.disable(logging.NOTSET)`` is called, it effectively removes this
|
|
|
|
overriding level, so that logging output again depends on the effective
|
|
|
|
levels of individual loggers.
|
2007-08-15 11:28:22 -03:00
|
|
|
|
2016-12-31 07:40:11 -04:00
|
|
|
Note that if you have defined any custom logging level higher than
|
|
|
|
``CRITICAL`` (this is not recommended), you won't be able to rely on the
|
2019-10-04 04:55:14 -03:00
|
|
|
default value for the *level* parameter, but will have to explicitly supply a
|
2016-12-31 07:40:11 -04:00
|
|
|
suitable value.
|
|
|
|
|
|
|
|
.. versionchanged:: 3.7
|
2019-10-04 04:55:14 -03:00
|
|
|
The *level* parameter was defaulted to level ``CRITICAL``. See Issue
|
2016-12-31 07:40:11 -04:00
|
|
|
#28524 for more information about this change.
|
2007-08-15 11:28:22 -03:00
|
|
|
|
2019-10-04 04:55:14 -03:00
|
|
|
.. function:: addLevelName(level, levelName)
|
2007-08-15 11:28:22 -03:00
|
|
|
|
2019-10-04 04:55:14 -03:00
|
|
|
Associates level *level* with text *levelName* in an internal dictionary, which is
|
2010-12-19 08:56:57 -04:00
|
|
|
used to map numeric levels to a textual representation, for example when a
|
|
|
|
:class:`Formatter` formats a message. This function can also be used to define
|
|
|
|
your own levels. The only constraints are that all levels used must be
|
|
|
|
registered using this function, levels should be positive integers and they
|
|
|
|
should increase in increasing order of severity.
|
2007-08-15 11:28:22 -03:00
|
|
|
|
2013-01-08 07:25:42 -04:00
|
|
|
.. note:: If you are thinking of defining your own levels, please see the
|
|
|
|
section on :ref:`custom-levels`.
|
2007-08-15 11:28:22 -03:00
|
|
|
|
2019-10-04 04:55:14 -03:00
|
|
|
.. function:: getLevelName(level)
|
2007-08-15 11:28:22 -03:00
|
|
|
|
2019-10-04 04:55:14 -03:00
|
|
|
Returns the textual representation of logging level *level*. If the level is one
|
2010-12-19 08:56:57 -04:00
|
|
|
of the predefined levels :const:`CRITICAL`, :const:`ERROR`, :const:`WARNING`,
|
|
|
|
:const:`INFO` or :const:`DEBUG` then you get the corresponding string. If you
|
|
|
|
have associated levels with names using :func:`addLevelName` then the name you
|
2019-10-04 04:55:14 -03:00
|
|
|
have associated with *level* is returned. If a numeric value corresponding to one
|
2010-12-19 08:56:57 -04:00
|
|
|
of the defined levels is passed in, the corresponding string representation is
|
2019-10-04 04:55:14 -03:00
|
|
|
returned. Otherwise, the string 'Level %s' % level is returned.
|
2007-08-15 11:28:22 -03:00
|
|
|
|
2014-09-18 14:01:12 -03:00
|
|
|
.. note:: Levels are internally integers (as they need to be compared in the
|
|
|
|
logging logic). This function is used to convert between an integer level
|
|
|
|
and the level name displayed in the formatted log output by means of the
|
|
|
|
``%(levelname)s`` format specifier (see :ref:`logrecord-attributes`).
|
|
|
|
|
2014-06-14 05:26:26 -03:00
|
|
|
.. versionchanged:: 3.4
|
|
|
|
In Python versions earlier than 3.4, this function could also be passed a
|
|
|
|
text level, and would return the corresponding numeric value of the level.
|
2014-09-11 19:06:09 -03:00
|
|
|
This undocumented behaviour was considered a mistake, and was removed in
|
|
|
|
Python 3.4, but reinstated in 3.4.2 due to retain backward compatibility.
|
2007-08-15 11:28:22 -03:00
|
|
|
|
2010-12-19 08:56:57 -04:00
|
|
|
.. function:: makeLogRecord(attrdict)
|
2007-08-15 11:28:22 -03:00
|
|
|
|
2010-12-19 08:56:57 -04:00
|
|
|
Creates and returns a new :class:`LogRecord` instance whose attributes are
|
|
|
|
defined by *attrdict*. This function is useful for taking a pickled
|
|
|
|
:class:`LogRecord` attribute dictionary, sent over a socket, and reconstituting
|
|
|
|
it as a :class:`LogRecord` instance at the receiving end.
|
2007-08-15 11:28:22 -03:00
|
|
|
|
2010-06-29 12:31:15 -03:00
|
|
|
|
2010-12-19 08:56:57 -04:00
|
|
|
.. function:: basicConfig(**kwargs)
|
2007-08-15 11:28:22 -03:00
|
|
|
|
2010-12-19 08:56:57 -04:00
|
|
|
Does basic configuration for the logging system by creating a
|
|
|
|
:class:`StreamHandler` with a default :class:`Formatter` and adding it to the
|
|
|
|
root logger. The functions :func:`debug`, :func:`info`, :func:`warning`,
|
|
|
|
:func:`error` and :func:`critical` will call :func:`basicConfig` automatically
|
|
|
|
if no handlers are defined for the root logger.
|
2007-08-15 11:28:22 -03:00
|
|
|
|
2010-12-19 08:56:57 -04:00
|
|
|
This function does nothing if the root logger already has handlers
|
2018-06-25 01:11:09 -03:00
|
|
|
configured, unless the keyword argument *force* is set to ``True``.
|
2007-08-15 11:28:22 -03:00
|
|
|
|
2013-01-07 10:16:52 -04:00
|
|
|
.. note:: This function should be called from the main thread
|
|
|
|
before other threads are started. In versions of Python prior to
|
|
|
|
2.7.1 and 3.2, if this function is called from multiple threads,
|
|
|
|
it is possible (in rare circumstances) that a handler will be added
|
|
|
|
to the root logger more than once, leading to unexpected results
|
|
|
|
such as messages being duplicated in the log.
|
2007-08-15 11:28:22 -03:00
|
|
|
|
2010-12-19 08:56:57 -04:00
|
|
|
The following keyword arguments are supported.
|
2009-10-10 17:32:36 -03:00
|
|
|
|
2013-03-28 09:28:44 -03:00
|
|
|
.. tabularcolumns:: |l|L|
|
|
|
|
|
2010-12-19 08:56:57 -04:00
|
|
|
+--------------+---------------------------------------------+
|
|
|
|
| Format | Description |
|
|
|
|
+==============+=============================================+
|
2020-09-01 09:59:46 -03:00
|
|
|
| *filename* | Specifies that a :class:`FileHandler` be |
|
|
|
|
| | created, using the specified filename, |
|
|
|
|
| | rather than a :class:`StreamHandler`. |
|
2010-12-19 08:56:57 -04:00
|
|
|
+--------------+---------------------------------------------+
|
2018-06-25 03:06:10 -03:00
|
|
|
| *filemode* | If *filename* is specified, open the file |
|
|
|
|
| | in this :ref:`mode <filemodes>`. Defaults |
|
|
|
|
| | to ``'a'``. |
|
2010-12-19 08:56:57 -04:00
|
|
|
+--------------+---------------------------------------------+
|
2018-06-25 03:06:10 -03:00
|
|
|
| *format* | Use the specified format string for the |
|
2010-12-19 08:56:57 -04:00
|
|
|
| | handler. |
|
|
|
|
+--------------+---------------------------------------------+
|
2018-06-25 03:06:10 -03:00
|
|
|
| *datefmt* | Use the specified date/time format, as |
|
|
|
|
| | accepted by :func:`time.strftime`. |
|
2010-12-19 08:56:57 -04:00
|
|
|
+--------------+---------------------------------------------+
|
2018-06-25 03:06:10 -03:00
|
|
|
| *style* | If *format* is specified, use this style |
|
|
|
|
| | for the format string. One of ``'%'``, |
|
|
|
|
| | ``'{'`` or ``'$'`` for :ref:`printf-style |
|
|
|
|
| | <old-string-formatting>`, |
|
|
|
|
| | :meth:`str.format` or |
|
|
|
|
| | :class:`string.Template` respectively. |
|
|
|
|
| | Defaults to ``'%'``. |
|
2010-12-19 08:56:57 -04:00
|
|
|
+--------------+---------------------------------------------+
|
2018-06-25 03:06:10 -03:00
|
|
|
| *level* | Set the root logger level to the specified |
|
|
|
|
| | :ref:`level <levels>`. |
|
2010-12-19 08:56:57 -04:00
|
|
|
+--------------+---------------------------------------------+
|
2018-06-25 03:06:10 -03:00
|
|
|
| *stream* | Use the specified stream to initialize the |
|
2020-09-01 09:59:46 -03:00
|
|
|
| | :class:`StreamHandler`. Note that this |
|
|
|
|
| | argument is incompatible with *filename* - |
|
|
|
|
| | if both are present, a ``ValueError`` is |
|
|
|
|
| | raised. |
|
2011-04-11 04:42:07 -03:00
|
|
|
+--------------+---------------------------------------------+
|
2018-06-25 03:06:10 -03:00
|
|
|
| *handlers* | If specified, this should be an iterable of |
|
2011-04-11 04:42:07 -03:00
|
|
|
| | already created handlers to add to the root |
|
|
|
|
| | logger. Any handlers which don't already |
|
|
|
|
| | have a formatter set will be assigned the |
|
|
|
|
| | default formatter created in this function. |
|
|
|
|
| | Note that this argument is incompatible |
|
2018-06-25 03:06:10 -03:00
|
|
|
| | with *filename* or *stream* - if both |
|
|
|
|
| | are present, a ``ValueError`` is raised. |
|
2010-12-19 08:56:57 -04:00
|
|
|
+--------------+---------------------------------------------+
|
2018-07-07 09:36:40 -03:00
|
|
|
| *force* | If this keyword argument is specified as |
|
2018-06-25 01:11:09 -03:00
|
|
|
| | true, any existing handlers attached to the |
|
|
|
|
| | root logger are removed and closed, before |
|
|
|
|
| | carrying out the configuration as specified |
|
|
|
|
| | by the other arguments. |
|
|
|
|
+--------------+---------------------------------------------+
|
2019-06-17 13:40:52 -03:00
|
|
|
| *encoding* | If this keyword argument is specified along |
|
|
|
|
| | with *filename*, its value is used when the |
|
2020-09-01 09:59:46 -03:00
|
|
|
| | :class:`FileHandler` is created, and thus |
|
|
|
|
| | used when opening the output file. |
|
2019-06-17 13:40:52 -03:00
|
|
|
+--------------+---------------------------------------------+
|
|
|
|
| *errors* | If this keyword argument is specified along |
|
|
|
|
| | with *filename*, its value is used when the |
|
2020-09-01 09:59:46 -03:00
|
|
|
| | :class:`FileHandler` is created, and thus |
|
|
|
|
| | used when opening the output file. If not |
|
|
|
|
| | specified, the value 'backslashreplace' is |
|
|
|
|
| | used. Note that if ``None`` is specified, |
|
|
|
|
| | it will be passed as such to :func:`open`, |
|
|
|
|
| | which means that it will be treated the |
|
|
|
|
| | same as passing 'errors'. |
|
2019-06-17 13:40:52 -03:00
|
|
|
+--------------+---------------------------------------------+
|
2018-06-25 01:11:09 -03:00
|
|
|
|
2009-10-10 17:32:36 -03:00
|
|
|
.. versionchanged:: 3.2
|
2018-07-07 09:36:40 -03:00
|
|
|
The *style* argument was added.
|
2007-08-15 11:28:22 -03:00
|
|
|
|
2011-04-11 04:42:07 -03:00
|
|
|
.. versionchanged:: 3.3
|
2018-07-07 09:36:40 -03:00
|
|
|
The *handlers* argument was added. Additional checks were added to
|
2011-04-11 04:42:07 -03:00
|
|
|
catch situations where incompatible arguments are specified (e.g.
|
2018-07-07 09:36:40 -03:00
|
|
|
*handlers* together with *stream* or *filename*, or *stream*
|
|
|
|
together with *filename*).
|
2011-04-11 04:42:07 -03:00
|
|
|
|
2018-07-07 09:36:40 -03:00
|
|
|
.. versionchanged:: 3.8
|
|
|
|
The *force* argument was added.
|
2007-08-15 11:28:22 -03:00
|
|
|
|
2019-06-17 13:40:52 -03:00
|
|
|
.. versionchanged:: 3.9
|
|
|
|
The *encoding* and *errors* arguments were added.
|
|
|
|
|
2010-12-19 08:56:57 -04:00
|
|
|
.. function:: shutdown()
|
2007-08-15 11:28:22 -03:00
|
|
|
|
2010-12-19 08:56:57 -04:00
|
|
|
Informs the logging system to perform an orderly shutdown by flushing and
|
|
|
|
closing all handlers. This should be called at application exit and no
|
|
|
|
further use of the logging system should be made after this call.
|
2007-08-15 11:28:22 -03:00
|
|
|
|
2019-03-26 02:42:26 -03:00
|
|
|
When the logging module is imported, it registers this function as an exit
|
|
|
|
handler (see :mod:`atexit`), so normally there's no need to do that
|
|
|
|
manually.
|
|
|
|
|
2007-08-15 11:28:22 -03:00
|
|
|
|
2010-12-19 08:56:57 -04:00
|
|
|
.. function:: setLoggerClass(klass)
|
2007-08-15 11:28:22 -03:00
|
|
|
|
2010-12-19 08:56:57 -04:00
|
|
|
Tells the logging system to use the class *klass* when instantiating a logger.
|
|
|
|
The class should define :meth:`__init__` such that only a name argument is
|
|
|
|
required, and the :meth:`__init__` should call :meth:`Logger.__init__`. This
|
|
|
|
function is typically called before any loggers are instantiated by applications
|
2019-06-19 07:46:53 -03:00
|
|
|
which need to use custom logger behavior. After this call, as at any other
|
|
|
|
time, do not instantiate loggers directly using the subclass: continue to use
|
|
|
|
the :func:`logging.getLogger` API to get your loggers.
|
2007-08-15 11:28:22 -03:00
|
|
|
|
|
|
|
|
2010-12-19 08:56:57 -04:00
|
|
|
.. function:: setLogRecordFactory(factory)
|
2007-08-15 11:28:22 -03:00
|
|
|
|
2010-12-19 08:56:57 -04:00
|
|
|
Set a callable which is used to create a :class:`LogRecord`.
|
2007-08-15 11:28:22 -03:00
|
|
|
|
2010-12-19 08:56:57 -04:00
|
|
|
:param factory: The factory callable to be used to instantiate a log record.
|
2007-08-15 11:28:22 -03:00
|
|
|
|
2010-12-19 08:56:57 -04:00
|
|
|
.. versionadded:: 3.2
|
|
|
|
This function has been provided, along with :func:`getLogRecordFactory`, to
|
|
|
|
allow developers more control over how the :class:`LogRecord` representing
|
|
|
|
a logging event is constructed.
|
2007-08-15 11:28:22 -03:00
|
|
|
|
2010-12-19 08:56:57 -04:00
|
|
|
The factory has the following signature:
|
2007-08-15 11:28:22 -03:00
|
|
|
|
2010-12-19 08:56:57 -04:00
|
|
|
``factory(name, level, fn, lno, msg, args, exc_info, func=None, sinfo=None, **kwargs)``
|
2007-08-15 11:28:22 -03:00
|
|
|
|
2010-12-19 08:56:57 -04:00
|
|
|
:name: The logger name.
|
|
|
|
:level: The logging level (numeric).
|
|
|
|
:fn: The full pathname of the file where the logging call was made.
|
|
|
|
:lno: The line number in the file where the logging call was made.
|
|
|
|
:msg: The logging message.
|
|
|
|
:args: The arguments for the logging message.
|
2016-10-19 10:29:26 -03:00
|
|
|
:exc_info: An exception tuple, or ``None``.
|
2010-12-19 08:56:57 -04:00
|
|
|
:func: The name of the function or method which invoked the logging
|
|
|
|
call.
|
|
|
|
:sinfo: A stack traceback such as is provided by
|
|
|
|
:func:`traceback.print_stack`, showing the call hierarchy.
|
|
|
|
:kwargs: Additional keyword arguments.
|
2007-08-15 11:28:22 -03:00
|
|
|
|
|
|
|
|
2013-01-07 10:16:52 -04:00
|
|
|
Module-Level Attributes
|
|
|
|
-----------------------
|
|
|
|
|
|
|
|
.. attribute:: lastResort
|
|
|
|
|
|
|
|
A "handler of last resort" is available through this attribute. This
|
|
|
|
is a :class:`StreamHandler` writing to ``sys.stderr`` with a level of
|
|
|
|
``WARNING``, and is used to handle logging events in the absence of any
|
|
|
|
logging configuration. The end result is to just print the message to
|
|
|
|
``sys.stderr``. This replaces the earlier error message saying that
|
|
|
|
"no handlers could be found for logger XYZ". If you need the earlier
|
|
|
|
behaviour for some reason, ``lastResort`` can be set to ``None``.
|
|
|
|
|
|
|
|
.. versionadded:: 3.2
|
|
|
|
|
2010-12-19 08:56:57 -04:00
|
|
|
Integration with the warnings module
|
|
|
|
------------------------------------
|
2007-08-15 11:28:22 -03:00
|
|
|
|
2010-12-19 08:56:57 -04:00
|
|
|
The :func:`captureWarnings` function can be used to integrate :mod:`logging`
|
|
|
|
with the :mod:`warnings` module.
|
2007-08-15 11:28:22 -03:00
|
|
|
|
2010-12-19 08:56:57 -04:00
|
|
|
.. function:: captureWarnings(capture)
|
2007-08-15 11:28:22 -03:00
|
|
|
|
2010-12-19 08:56:57 -04:00
|
|
|
This function is used to turn the capture of warnings by logging on and
|
|
|
|
off.
|
2007-08-15 11:28:22 -03:00
|
|
|
|
2010-12-19 08:56:57 -04:00
|
|
|
If *capture* is ``True``, warnings issued by the :mod:`warnings` module will
|
|
|
|
be redirected to the logging system. Specifically, a warning will be
|
|
|
|
formatted using :func:`warnings.formatwarning` and the resulting string
|
2012-02-25 21:13:30 -04:00
|
|
|
logged to a logger named ``'py.warnings'`` with a severity of :const:`WARNING`.
|
2007-08-15 11:28:22 -03:00
|
|
|
|
2010-12-19 08:56:57 -04:00
|
|
|
If *capture* is ``False``, the redirection of warnings to the logging system
|
|
|
|
will stop, and warnings will be redirected to their original destinations
|
2011-10-22 14:29:48 -03:00
|
|
|
(i.e. those in effect before ``captureWarnings(True)`` was called).
|
2007-08-15 11:28:22 -03:00
|
|
|
|
|
|
|
|
2010-12-19 08:56:57 -04:00
|
|
|
.. seealso::
|
2007-08-15 11:28:22 -03:00
|
|
|
|
2010-12-19 08:56:57 -04:00
|
|
|
Module :mod:`logging.config`
|
|
|
|
Configuration API for the logging module.
|
2007-08-15 11:28:22 -03:00
|
|
|
|
2010-12-19 08:56:57 -04:00
|
|
|
Module :mod:`logging.handlers`
|
|
|
|
Useful handlers included with the logging module.
|
2007-08-15 11:28:22 -03:00
|
|
|
|
2010-12-19 08:56:57 -04:00
|
|
|
:pep:`282` - A Logging System
|
|
|
|
The proposal which described this feature for inclusion in the Python standard
|
|
|
|
library.
|
2007-08-15 11:28:22 -03:00
|
|
|
|
2016-02-26 14:37:12 -04:00
|
|
|
`Original Python logging package <https://www.red-dove.com/python_logging.html>`_
|
2010-12-19 08:56:57 -04:00
|
|
|
This is the original source for the :mod:`logging` package. The version of the
|
|
|
|
package available from this site is suitable for use with Python 1.5.2, 2.1.x
|
|
|
|
and 2.2.x, which do not include the :mod:`logging` package in the standard
|
|
|
|
library.
|