blob: a05b99f5cb65b5a076b77bf40b6f9918fceb41bd [file] [log] [blame]
Georg Brandl116aa622007-08-15 14:28:22 +00001:mod:`logging` --- Logging facility for Python
2==============================================
3
4.. module:: logging
5 :synopsis: Flexible error logging system for applications.
6
7
8.. moduleauthor:: Vinay Sajip <vinay_sajip@red-dove.com>
9.. sectionauthor:: Vinay Sajip <vinay_sajip@red-dove.com>
10
11
Georg Brandl116aa622007-08-15 14:28:22 +000012.. index:: pair: Errors; logging
13
Georg Brandl116aa622007-08-15 14:28:22 +000014This module defines functions and classes which implement a flexible error
15logging system for applications.
16
17Logging is performed by calling methods on instances of the :class:`Logger`
18class (hereafter called :dfn:`loggers`). Each instance has a name, and they are
Georg Brandl9afde1c2007-11-01 20:32:30 +000019conceptually arranged in a namespace hierarchy using dots (periods) as
Georg Brandl116aa622007-08-15 14:28:22 +000020separators. For example, a logger named "scan" is the parent of loggers
21"scan.text", "scan.html" and "scan.pdf". Logger names can be anything you want,
22and indicate the area of an application in which a logged message originates.
23
24Logged messages also have levels of importance associated with them. The default
25levels provided are :const:`DEBUG`, :const:`INFO`, :const:`WARNING`,
26:const:`ERROR` and :const:`CRITICAL`. As a convenience, you indicate the
27importance of a logged message by calling an appropriate method of
28:class:`Logger`. The methods are :meth:`debug`, :meth:`info`, :meth:`warning`,
29:meth:`error` and :meth:`critical`, which mirror the default levels. You are not
30constrained to use these levels: you can specify your own and use a more general
31:class:`Logger` method, :meth:`log`, which takes an explicit level argument.
32
Christian Heimes8b0facf2007-12-04 19:30:01 +000033
34Logging tutorial
35----------------
36
37The key benefit of having the logging API provided by a standard library module
38is that all Python modules can participate in logging, so your application log
39can include messages from third-party modules.
40
41It is, of course, possible to log messages with different verbosity levels or to
42different destinations. Support for writing log messages to files, HTTP
43GET/POST locations, email via SMTP, generic sockets, or OS-specific logging
Christian Heimesc3f30c42008-02-22 16:37:40 +000044mechanisms are all supported by the standard module. You can also create your
Christian Heimes8b0facf2007-12-04 19:30:01 +000045own log destination class if you have special requirements not met by any of the
46built-in classes.
47
48Simple examples
49^^^^^^^^^^^^^^^
50
51.. sectionauthor:: Doug Hellmann
52.. (see <http://blog.doughellmann.com/2007/05/pymotw-logging.html>)
53
54Most applications are probably going to want to log to a file, so let's start
55with that case. Using the :func:`basicConfig` function, we can set up the
Benjamin Petersond7c3ed52010-06-27 22:32:30 +000056default handler so that debug messages are written to a file (in the example,
57we assume that you have the appropriate permissions to create a file called
58*example.log* in the current directory)::
Christian Heimes8b0facf2007-12-04 19:30:01 +000059
60 import logging
Benjamin Petersond7c3ed52010-06-27 22:32:30 +000061 LOG_FILENAME = 'example.log'
Benjamin Peterson4ac9ce42009-10-04 14:49:41 +000062 logging.basicConfig(filename=LOG_FILENAME,level=logging.DEBUG)
Christian Heimes8b0facf2007-12-04 19:30:01 +000063
64 logging.debug('This message should go to the log file')
65
66And now if we open the file and look at what we have, we should find the log
67message::
68
69 DEBUG:root:This message should go to the log file
70
71If you run the script repeatedly, the additional log messages are appended to
Eric Smith5c01a8d2009-06-04 18:20:51 +000072the file. To create a new file each time, you can pass a *filemode* argument to
Christian Heimes8b0facf2007-12-04 19:30:01 +000073:func:`basicConfig` with a value of ``'w'``. Rather than managing the file size
74yourself, though, it is simpler to use a :class:`RotatingFileHandler`::
75
76 import glob
77 import logging
78 import logging.handlers
79
Benjamin Petersond7c3ed52010-06-27 22:32:30 +000080 LOG_FILENAME = 'logging_rotatingfile_example.out'
Christian Heimes8b0facf2007-12-04 19:30:01 +000081
82 # Set up a specific logger with our desired output level
83 my_logger = logging.getLogger('MyLogger')
84 my_logger.setLevel(logging.DEBUG)
85
86 # Add the log message handler to the logger
87 handler = logging.handlers.RotatingFileHandler(
88 LOG_FILENAME, maxBytes=20, backupCount=5)
89
90 my_logger.addHandler(handler)
91
92 # Log some messages
93 for i in range(20):
94 my_logger.debug('i = %d' % i)
95
96 # See what files are created
97 logfiles = glob.glob('%s*' % LOG_FILENAME)
98
99 for filename in logfiles:
Georg Brandlf6945182008-02-01 11:56:49 +0000100 print(filename)
Christian Heimes8b0facf2007-12-04 19:30:01 +0000101
102The result should be 6 separate files, each with part of the log history for the
103application::
104
Benjamin Petersond7c3ed52010-06-27 22:32:30 +0000105 logging_rotatingfile_example.out
106 logging_rotatingfile_example.out.1
107 logging_rotatingfile_example.out.2
108 logging_rotatingfile_example.out.3
109 logging_rotatingfile_example.out.4
110 logging_rotatingfile_example.out.5
Christian Heimes8b0facf2007-12-04 19:30:01 +0000111
Benjamin Petersond7c3ed52010-06-27 22:32:30 +0000112The most current file is always :file:`logging_rotatingfile_example.out`,
Christian Heimes8b0facf2007-12-04 19:30:01 +0000113and each time it reaches the size limit it is renamed with the suffix
114``.1``. Each of the existing backup files is renamed to increment the suffix
Eric Smith5c01a8d2009-06-04 18:20:51 +0000115(``.1`` becomes ``.2``, etc.) and the ``.6`` file is erased.
Christian Heimes8b0facf2007-12-04 19:30:01 +0000116
117Obviously this example sets the log length much much too small as an extreme
118example. You would want to set *maxBytes* to an appropriate value.
119
120Another useful feature of the logging API is the ability to produce different
121messages at different log levels. This allows you to instrument your code with
122debug messages, for example, but turning the log level down so that those debug
123messages are not written for your production system. The default levels are
Vinay Sajipb6d065f2009-10-28 23:28:16 +0000124``NOTSET``, ``DEBUG``, ``INFO``, ``WARNING``, ``ERROR`` and ``CRITICAL``.
Christian Heimes8b0facf2007-12-04 19:30:01 +0000125
126The logger, handler, and log message call each specify a level. The log message
127is only emitted if the handler and logger are configured to emit messages of
128that level or lower. For example, if a message is ``CRITICAL``, and the logger
129is set to ``ERROR``, the message is emitted. If a message is a ``WARNING``, and
130the logger is set to produce only ``ERROR``\s, the message is not emitted::
131
132 import logging
133 import sys
134
135 LEVELS = {'debug': logging.DEBUG,
136 'info': logging.INFO,
137 'warning': logging.WARNING,
138 'error': logging.ERROR,
139 'critical': logging.CRITICAL}
140
141 if len(sys.argv) > 1:
142 level_name = sys.argv[1]
143 level = LEVELS.get(level_name, logging.NOTSET)
144 logging.basicConfig(level=level)
145
146 logging.debug('This is a debug message')
147 logging.info('This is an info message')
148 logging.warning('This is a warning message')
149 logging.error('This is an error message')
150 logging.critical('This is a critical error message')
151
152Run the script with an argument like 'debug' or 'warning' to see which messages
153show up at different levels::
154
155 $ python logging_level_example.py debug
156 DEBUG:root:This is a debug message
157 INFO:root:This is an info message
158 WARNING:root:This is a warning message
159 ERROR:root:This is an error message
160 CRITICAL:root:This is a critical error message
161
162 $ python logging_level_example.py info
163 INFO:root:This is an info message
164 WARNING:root:This is a warning message
165 ERROR:root:This is an error message
166 CRITICAL:root:This is a critical error message
167
168You will notice that these log messages all have ``root`` embedded in them. The
169logging module supports a hierarchy of loggers with different names. An easy
170way to tell where a specific log message comes from is to use a separate logger
171object for each of your modules. Each new logger "inherits" the configuration
172of its parent, and log messages sent to a logger include the name of that
173logger. Optionally, each logger can be configured differently, so that messages
174from different modules are handled in different ways. Let's look at a simple
175example of how to log from different modules so it is easy to trace the source
176of the message::
177
178 import logging
179
180 logging.basicConfig(level=logging.WARNING)
181
182 logger1 = logging.getLogger('package1.module1')
183 logger2 = logging.getLogger('package2.module2')
184
185 logger1.warning('This message comes from one module')
186 logger2.warning('And this message comes from another module')
187
188And the output::
189
190 $ python logging_modules_example.py
191 WARNING:package1.module1:This message comes from one module
192 WARNING:package2.module2:And this message comes from another module
193
194There are many more options for configuring logging, including different log
195message formatting options, having messages delivered to multiple destinations,
196and changing the configuration of a long-running application on the fly using a
197socket interface. All of these options are covered in depth in the library
198module documentation.
199
200Loggers
201^^^^^^^
202
203The logging library takes a modular approach and offers the several categories
204of components: loggers, handlers, filters, and formatters. Loggers expose the
205interface that application code directly uses. Handlers send the log records to
206the appropriate destination. Filters provide a finer grained facility for
207determining which log records to send on to a handler. Formatters specify the
208layout of the resultant log record.
209
210:class:`Logger` objects have a threefold job. First, they expose several
211methods to application code so that applications can log messages at runtime.
212Second, logger objects determine which log messages to act upon based upon
213severity (the default filtering facility) or filter objects. Third, logger
214objects pass along relevant log messages to all interested log handlers.
215
216The most widely used methods on logger objects fall into two categories:
217configuration and message sending.
218
219* :meth:`Logger.setLevel` specifies the lowest-severity log message a logger
220 will handle, where debug is the lowest built-in severity level and critical is
221 the highest built-in severity. For example, if the severity level is info,
222 the logger will handle only info, warning, error, and critical messages and
223 will ignore debug messages.
224
225* :meth:`Logger.addFilter` and :meth:`Logger.removeFilter` add and remove filter
226 objects from the logger object. This tutorial does not address filters.
227
228With the logger object configured, the following methods create log messages:
229
230* :meth:`Logger.debug`, :meth:`Logger.info`, :meth:`Logger.warning`,
231 :meth:`Logger.error`, and :meth:`Logger.critical` all create log records with
232 a message and a level that corresponds to their respective method names. The
233 message is actually a format string, which may contain the standard string
234 substitution syntax of :const:`%s`, :const:`%d`, :const:`%f`, and so on. The
235 rest of their arguments is a list of objects that correspond with the
236 substitution fields in the message. With regard to :const:`**kwargs`, the
237 logging methods care only about a keyword of :const:`exc_info` and use it to
238 determine whether to log exception information.
239
240* :meth:`Logger.exception` creates a log message similar to
241 :meth:`Logger.error`. The difference is that :meth:`Logger.exception` dumps a
242 stack trace along with it. Call this method only from an exception handler.
243
244* :meth:`Logger.log` takes a log level as an explicit argument. This is a
245 little more verbose for logging messages than using the log level convenience
246 methods listed above, but this is how to log at custom log levels.
247
Christian Heimesdcca98d2008-02-25 13:19:43 +0000248:func:`getLogger` returns a reference to a logger instance with the specified
Vinay Sajipc15dfd62010-07-06 15:08:55 +0000249name if it is provided, or ``root`` if not. The names are period-separated
Christian Heimes8b0facf2007-12-04 19:30:01 +0000250hierarchical structures. Multiple calls to :func:`getLogger` with the same name
251will return a reference to the same logger object. Loggers that are further
252down in the hierarchical list are children of loggers higher up in the list.
253For example, given a logger with a name of ``foo``, loggers with names of
Benjamin Peterson22005fc2010-04-11 16:25:06 +0000254``foo.bar``, ``foo.bar.baz``, and ``foo.bam`` are all descendants of ``foo``.
255Child loggers propagate messages up to the handlers associated with their
256ancestor loggers. Because of this, it is unnecessary to define and configure
257handlers for all the loggers an application uses. It is sufficient to
258configure handlers for a top-level logger and create child loggers as needed.
Christian Heimes8b0facf2007-12-04 19:30:01 +0000259
260
261Handlers
262^^^^^^^^
263
264:class:`Handler` objects are responsible for dispatching the appropriate log
265messages (based on the log messages' severity) to the handler's specified
266destination. Logger objects can add zero or more handler objects to themselves
267with an :func:`addHandler` method. As an example scenario, an application may
268want to send all log messages to a log file, all log messages of error or higher
269to stdout, and all messages of critical to an email address. This scenario
Christian Heimesc3f30c42008-02-22 16:37:40 +0000270requires three individual handlers where each handler is responsible for sending
Christian Heimes8b0facf2007-12-04 19:30:01 +0000271messages of a specific severity to a specific location.
272
273The standard library includes quite a few handler types; this tutorial uses only
274:class:`StreamHandler` and :class:`FileHandler` in its examples.
275
276There are very few methods in a handler for application developers to concern
277themselves with. The only handler methods that seem relevant for application
278developers who are using the built-in handler objects (that is, not creating
279custom handlers) are the following configuration methods:
280
281* The :meth:`Handler.setLevel` method, just as in logger objects, specifies the
282 lowest severity that will be dispatched to the appropriate destination. Why
283 are there two :func:`setLevel` methods? The level set in the logger
284 determines which severity of messages it will pass to its handlers. The level
285 set in each handler determines which messages that handler will send on.
Benjamin Peterson22005fc2010-04-11 16:25:06 +0000286
287* :func:`setFormatter` selects a Formatter object for this handler to use.
Christian Heimes8b0facf2007-12-04 19:30:01 +0000288
289* :func:`addFilter` and :func:`removeFilter` respectively configure and
290 deconfigure filter objects on handlers.
291
Benjamin Peterson22005fc2010-04-11 16:25:06 +0000292Application code should not directly instantiate and use instances of
293:class:`Handler`. Instead, the :class:`Handler` class is a base class that
294defines the interface that all handlers should have and establishes some
295default behavior that child classes can use (or override).
Christian Heimes8b0facf2007-12-04 19:30:01 +0000296
297
298Formatters
299^^^^^^^^^^
300
301Formatter objects configure the final order, structure, and contents of the log
Christian Heimesdcca98d2008-02-25 13:19:43 +0000302message. Unlike the base :class:`logging.Handler` class, application code may
Christian Heimes8b0facf2007-12-04 19:30:01 +0000303instantiate formatter classes, although you could likely subclass the formatter
304if your application needs special behavior. The constructor takes two optional
305arguments: a message format string and a date format string. If there is no
306message format string, the default is to use the raw message. If there is no
307date format string, the default date format is::
308
309 %Y-%m-%d %H:%M:%S
310
311with the milliseconds tacked on at the end.
312
313The message format string uses ``%(<dictionary key>)s`` styled string
314substitution; the possible keys are documented in :ref:`formatter-objects`.
315
316The following message format string will log the time in a human-readable
317format, the severity of the message, and the contents of the message, in that
318order::
319
320 "%(asctime)s - %(levelname)s - %(message)s"
321
Vinay Sajip40d9a4e2010-08-30 18:10:03 +0000322Formatters use a user-configurable function to convert the creation time of a
323record to a tuple. By default, :func:`time.localtime` is used; to change this
324for a particular formatter instance, set the ``converter`` attribute of the
325instance to a function with the same signature as :func:`time.localtime` or
326:func:`time.gmtime`. To change it for all formatters, for example if you want
327all logging times to be shown in GMT, set the ``converter`` attribute in the
328Formatter class (to ``time.gmtime`` for GMT display).
329
Christian Heimes8b0facf2007-12-04 19:30:01 +0000330
331Configuring Logging
332^^^^^^^^^^^^^^^^^^^
333
Benjamin Petersond7c3ed52010-06-27 22:32:30 +0000334Programmers can configure logging in three ways:
335
3361. Creating loggers, handlers, and formatters explicitly using Python
337 code that calls the configuration methods listed above.
3382. Creating a logging config file and reading it using the :func:`fileConfig`
339 function.
3403. Creating a dictionary of configuration information and passing it
341 to the :func:`dictConfig` function.
342
343The following example configures a very simple logger, a console
344handler, and a simple formatter using Python code::
Christian Heimes8b0facf2007-12-04 19:30:01 +0000345
346 import logging
347
348 # create logger
349 logger = logging.getLogger("simple_example")
350 logger.setLevel(logging.DEBUG)
Benjamin Petersond7c3ed52010-06-27 22:32:30 +0000351
Christian Heimes8b0facf2007-12-04 19:30:01 +0000352 # create console handler and set level to debug
353 ch = logging.StreamHandler()
354 ch.setLevel(logging.DEBUG)
Benjamin Petersond7c3ed52010-06-27 22:32:30 +0000355
Christian Heimes8b0facf2007-12-04 19:30:01 +0000356 # create formatter
357 formatter = logging.Formatter("%(asctime)s - %(name)s - %(levelname)s - %(message)s")
Benjamin Petersond7c3ed52010-06-27 22:32:30 +0000358
Christian Heimes8b0facf2007-12-04 19:30:01 +0000359 # add formatter to ch
360 ch.setFormatter(formatter)
Benjamin Petersond7c3ed52010-06-27 22:32:30 +0000361
Christian Heimes8b0facf2007-12-04 19:30:01 +0000362 # add ch to logger
363 logger.addHandler(ch)
364
365 # "application" code
366 logger.debug("debug message")
367 logger.info("info message")
368 logger.warn("warn message")
369 logger.error("error message")
370 logger.critical("critical message")
371
372Running this module from the command line produces the following output::
373
374 $ python simple_logging_module.py
375 2005-03-19 15:10:26,618 - simple_example - DEBUG - debug message
376 2005-03-19 15:10:26,620 - simple_example - INFO - info message
377 2005-03-19 15:10:26,695 - simple_example - WARNING - warn message
378 2005-03-19 15:10:26,697 - simple_example - ERROR - error message
379 2005-03-19 15:10:26,773 - simple_example - CRITICAL - critical message
380
381The following Python module creates a logger, handler, and formatter nearly
382identical to those in the example listed above, with the only difference being
383the names of the objects::
384
385 import logging
386 import logging.config
387
388 logging.config.fileConfig("logging.conf")
389
390 # create logger
391 logger = logging.getLogger("simpleExample")
392
393 # "application" code
394 logger.debug("debug message")
395 logger.info("info message")
396 logger.warn("warn message")
397 logger.error("error message")
398 logger.critical("critical message")
399
400Here is the logging.conf file::
401
402 [loggers]
403 keys=root,simpleExample
404
405 [handlers]
406 keys=consoleHandler
407
408 [formatters]
409 keys=simpleFormatter
410
411 [logger_root]
412 level=DEBUG
413 handlers=consoleHandler
414
415 [logger_simpleExample]
416 level=DEBUG
417 handlers=consoleHandler
418 qualname=simpleExample
419 propagate=0
420
421 [handler_consoleHandler]
422 class=StreamHandler
423 level=DEBUG
424 formatter=simpleFormatter
425 args=(sys.stdout,)
426
427 [formatter_simpleFormatter]
428 format=%(asctime)s - %(name)s - %(levelname)s - %(message)s
429 datefmt=
430
431The output is nearly identical to that of the non-config-file-based example::
432
433 $ python simple_logging_config.py
434 2005-03-19 15:38:55,977 - simpleExample - DEBUG - debug message
435 2005-03-19 15:38:55,979 - simpleExample - INFO - info message
436 2005-03-19 15:38:56,054 - simpleExample - WARNING - warn message
437 2005-03-19 15:38:56,055 - simpleExample - ERROR - error message
438 2005-03-19 15:38:56,130 - simpleExample - CRITICAL - critical message
439
440You can see that the config file approach has a few advantages over the Python
441code approach, mainly separation of configuration and code and the ability of
442noncoders to easily modify the logging properties.
443
Benjamin Peterson9451a1c2010-03-13 22:30:34 +0000444Note that the class names referenced in config files need to be either relative
445to the logging module, or absolute values which can be resolved using normal
446import mechanisms. Thus, you could use either `handlers.WatchedFileHandler`
447(relative to the logging module) or `mypackage.mymodule.MyHandler` (for a
448class defined in package `mypackage` and module `mymodule`, where `mypackage`
449is available on the Python import path).
450
Benjamin Peterson56894b52010-06-28 00:16:12 +0000451In Python 3.2, a new means of configuring logging has been introduced, using
Benjamin Petersond7c3ed52010-06-27 22:32:30 +0000452dictionaries to hold configuration information. This provides a superset of the
453functionality of the config-file-based approach outlined above, and is the
454recommended configuration method for new applications and deployments. Because
455a Python dictionary is used to hold configuration information, and since you
456can populate that dictionary using different means, you have more options for
457configuration. For example, you can use a configuration file in JSON format,
458or, if you have access to YAML processing functionality, a file in YAML
459format, to populate the configuration dictionary. Or, of course, you can
460construct the dictionary in Python code, receive it in pickled form over a
461socket, or use whatever approach makes sense for your application.
462
463Here's an example of the same configuration as above, in YAML format for
464the new dictionary-based approach::
465
466 version: 1
467 formatters:
468 simple:
469 format: format=%(asctime)s - %(name)s - %(levelname)s - %(message)s
470 handlers:
471 console:
472 class: logging.StreamHandler
473 level: DEBUG
474 formatter: simple
475 stream: ext://sys.stdout
476 loggers:
477 simpleExample:
478 level: DEBUG
479 handlers: [console]
480 propagate: no
481 root:
482 level: DEBUG
483 handlers: [console]
484
485For more information about logging using a dictionary, see
486:ref:`logging-config-api`.
487
Vinay Sajip26a2d5e2009-01-10 13:37:26 +0000488.. _library-config:
Vinay Sajip30bf1222009-01-10 19:23:34 +0000489
Benjamin Peterson3e4f0552008-09-02 00:31:15 +0000490Configuring Logging for a Library
491^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
492
493When developing a library which uses logging, some consideration needs to be
494given to its configuration. If the using application does not use logging, and
495library code makes logging calls, then a one-off message "No handlers could be
496found for logger X.Y.Z" is printed to the console. This message is intended
497to catch mistakes in logging configuration, but will confuse an application
498developer who is not aware of logging by the library.
499
500In addition to documenting how a library uses logging, a good way to configure
501library logging so that it does not cause a spurious message is to add a
502handler which does nothing. This avoids the message being printed, since a
503handler will be found: it just doesn't produce any output. If the library user
504configures logging for application use, presumably that configuration will add
505some handlers, and if levels are suitably configured then logging calls made
506in library code will send output to those handlers, as normal.
507
508A do-nothing handler can be simply defined as follows::
509
510 import logging
511
512 class NullHandler(logging.Handler):
513 def emit(self, record):
514 pass
515
516An instance of this handler should be added to the top-level logger of the
517logging namespace used by the library. If all logging by a library *foo* is
518done using loggers with names matching "foo.x.y", then the code::
519
520 import logging
521
522 h = NullHandler()
523 logging.getLogger("foo").addHandler(h)
524
525should have the desired effect. If an organisation produces a number of
526libraries, then the logger name specified can be "orgname.foo" rather than
527just "foo".
528
Georg Brandlf9734072008-12-07 15:30:06 +0000529.. versionadded:: 3.1
Vinay Sajip4039aff2010-09-11 10:25:28 +0000530
Georg Brandl67b21b72010-08-17 15:07:14 +0000531 The :class:`NullHandler` class was not present in previous versions, but is
532 now included, so that it need not be defined in library code.
Georg Brandlf9734072008-12-07 15:30:06 +0000533
534
Christian Heimes8b0facf2007-12-04 19:30:01 +0000535
536Logging Levels
537--------------
538
Georg Brandl116aa622007-08-15 14:28:22 +0000539The numeric values of logging levels are given in the following table. These are
540primarily of interest if you want to define your own levels, and need them to
541have specific values relative to the predefined levels. If you define a level
542with the same numeric value, it overwrites the predefined value; the predefined
543name is lost.
544
545+--------------+---------------+
546| Level | Numeric value |
547+==============+===============+
548| ``CRITICAL`` | 50 |
549+--------------+---------------+
550| ``ERROR`` | 40 |
551+--------------+---------------+
552| ``WARNING`` | 30 |
553+--------------+---------------+
554| ``INFO`` | 20 |
555+--------------+---------------+
556| ``DEBUG`` | 10 |
557+--------------+---------------+
558| ``NOTSET`` | 0 |
559+--------------+---------------+
560
561Levels can also be associated with loggers, being set either by the developer or
562through loading a saved logging configuration. When a logging method is called
563on a logger, the logger compares its own level with the level associated with
564the method call. If the logger's level is higher than the method call's, no
565logging message is actually generated. This is the basic mechanism controlling
566the verbosity of logging output.
567
568Logging messages are encoded as instances of the :class:`LogRecord` class. When
569a logger decides to actually log an event, a :class:`LogRecord` instance is
570created from the logging message.
571
572Logging messages are subjected to a dispatch mechanism through the use of
573:dfn:`handlers`, which are instances of subclasses of the :class:`Handler`
574class. Handlers are responsible for ensuring that a logged message (in the form
575of a :class:`LogRecord`) ends up in a particular location (or set of locations)
576which is useful for the target audience for that message (such as end users,
577support desk staff, system administrators, developers). Handlers are passed
578:class:`LogRecord` instances intended for particular destinations. Each logger
579can have zero, one or more handlers associated with it (via the
580:meth:`addHandler` method of :class:`Logger`). In addition to any handlers
581directly associated with a logger, *all handlers associated with all ancestors
Benjamin Peterson22005fc2010-04-11 16:25:06 +0000582of the logger* are called to dispatch the message (unless the *propagate* flag
583for a logger is set to a false value, at which point the passing to ancestor
584handlers stops).
Georg Brandl116aa622007-08-15 14:28:22 +0000585
586Just as for loggers, handlers can have levels associated with them. A handler's
587level acts as a filter in the same way as a logger's level does. If a handler
588decides to actually dispatch an event, the :meth:`emit` method is used to send
589the message to its destination. Most user-defined subclasses of :class:`Handler`
590will need to override this :meth:`emit`.
591
Benjamin Peterson058e31e2009-01-16 03:54:08 +0000592Useful Handlers
593---------------
594
Georg Brandl116aa622007-08-15 14:28:22 +0000595In addition to the base :class:`Handler` class, many useful subclasses are
596provided:
597
Vinay Sajip121a1c42010-09-08 10:46:15 +0000598#. :class:`StreamHandler` instances send messages to streams (file-like
Georg Brandl116aa622007-08-15 14:28:22 +0000599 objects).
600
Vinay Sajip121a1c42010-09-08 10:46:15 +0000601#. :class:`FileHandler` instances send messages to disk files.
Georg Brandl116aa622007-08-15 14:28:22 +0000602
Benjamin Peterson058e31e2009-01-16 03:54:08 +0000603.. module:: logging.handlers
Vinay Sajip30bf1222009-01-10 19:23:34 +0000604
Benjamin Peterson058e31e2009-01-16 03:54:08 +0000605#. :class:`BaseRotatingHandler` is the base class for handlers that
606 rotate log files at a certain point. It is not meant to be instantiated
607 directly. Instead, use :class:`RotatingFileHandler` or
608 :class:`TimedRotatingFileHandler`.
Georg Brandl116aa622007-08-15 14:28:22 +0000609
Vinay Sajip121a1c42010-09-08 10:46:15 +0000610#. :class:`RotatingFileHandler` instances send messages to disk
Benjamin Peterson058e31e2009-01-16 03:54:08 +0000611 files, with support for maximum log file sizes and log file rotation.
Georg Brandl116aa622007-08-15 14:28:22 +0000612
Vinay Sajip121a1c42010-09-08 10:46:15 +0000613#. :class:`TimedRotatingFileHandler` instances send messages to
Benjamin Peterson058e31e2009-01-16 03:54:08 +0000614 disk files, rotating the log file at certain timed intervals.
Georg Brandl116aa622007-08-15 14:28:22 +0000615
Vinay Sajip121a1c42010-09-08 10:46:15 +0000616#. :class:`SocketHandler` instances send messages to TCP/IP
Benjamin Peterson058e31e2009-01-16 03:54:08 +0000617 sockets.
Georg Brandl116aa622007-08-15 14:28:22 +0000618
Vinay Sajip121a1c42010-09-08 10:46:15 +0000619#. :class:`DatagramHandler` instances send messages to UDP
Benjamin Peterson058e31e2009-01-16 03:54:08 +0000620 sockets.
Georg Brandl116aa622007-08-15 14:28:22 +0000621
Vinay Sajip121a1c42010-09-08 10:46:15 +0000622#. :class:`SMTPHandler` instances send messages to a designated
Benjamin Peterson058e31e2009-01-16 03:54:08 +0000623 email address.
Georg Brandl116aa622007-08-15 14:28:22 +0000624
Vinay Sajip121a1c42010-09-08 10:46:15 +0000625#. :class:`SysLogHandler` instances send messages to a Unix
Benjamin Peterson058e31e2009-01-16 03:54:08 +0000626 syslog daemon, possibly on a remote machine.
Georg Brandl116aa622007-08-15 14:28:22 +0000627
Vinay Sajip121a1c42010-09-08 10:46:15 +0000628#. :class:`NTEventLogHandler` instances send messages to a
Benjamin Peterson058e31e2009-01-16 03:54:08 +0000629 Windows NT/2000/XP event log.
Georg Brandl116aa622007-08-15 14:28:22 +0000630
Vinay Sajip121a1c42010-09-08 10:46:15 +0000631#. :class:`MemoryHandler` instances send messages to a buffer
Benjamin Peterson058e31e2009-01-16 03:54:08 +0000632 in memory, which is flushed whenever specific criteria are met.
Georg Brandl116aa622007-08-15 14:28:22 +0000633
Vinay Sajip121a1c42010-09-08 10:46:15 +0000634#. :class:`HTTPHandler` instances send messages to an HTTP
Benjamin Peterson058e31e2009-01-16 03:54:08 +0000635 server using either ``GET`` or ``POST`` semantics.
Georg Brandl116aa622007-08-15 14:28:22 +0000636
Benjamin Peterson058e31e2009-01-16 03:54:08 +0000637#. :class:`WatchedFileHandler` instances watch the file they are
638 logging to. If the file changes, it is closed and reopened using the file
639 name. This handler is only useful on Unix-like systems; Windows does not
640 support the underlying mechanism used.
Vinay Sajip30bf1222009-01-10 19:23:34 +0000641
Vinay Sajip121a1c42010-09-08 10:46:15 +0000642#. :class:`QueueHandler` instances send messages to a queue, such as
643 those implemented in the :mod:`queue` or :mod:`multiprocessing` modules.
644
Vinay Sajip30bf1222009-01-10 19:23:34 +0000645.. currentmodule:: logging
646
Georg Brandlf9734072008-12-07 15:30:06 +0000647#. :class:`NullHandler` instances do nothing with error messages. They are used
648 by library developers who want to use logging, but want to avoid the "No
649 handlers could be found for logger XXX" message which can be displayed if
Vinay Sajip26a2d5e2009-01-10 13:37:26 +0000650 the library user has not configured logging. See :ref:`library-config` for
651 more information.
Georg Brandlf9734072008-12-07 15:30:06 +0000652
653.. versionadded:: 3.1
654
655The :class:`NullHandler` class was not present in previous versions.
656
Vinay Sajip121a1c42010-09-08 10:46:15 +0000657.. versionadded:: 3.2
658
659The :class:`QueueHandler` class was not present in previous versions.
660
Vinay Sajipa17775f2008-12-30 07:32:59 +0000661The :class:`NullHandler`, :class:`StreamHandler` and :class:`FileHandler`
662classes are defined in the core logging package. The other handlers are
663defined in a sub- module, :mod:`logging.handlers`. (There is also another
664sub-module, :mod:`logging.config`, for configuration functionality.)
Georg Brandl116aa622007-08-15 14:28:22 +0000665
666Logged messages are formatted for presentation through instances of the
667:class:`Formatter` class. They are initialized with a format string suitable for
668use with the % operator and a dictionary.
669
670For formatting multiple messages in a batch, instances of
671:class:`BufferingFormatter` can be used. In addition to the format string (which
672is applied to each message in the batch), there is provision for header and
673trailer format strings.
674
675When filtering based on logger level and/or handler level is not enough,
676instances of :class:`Filter` can be added to both :class:`Logger` and
677:class:`Handler` instances (through their :meth:`addFilter` method). Before
678deciding to process a message further, both loggers and handlers consult all
679their filters for permission. If any filter returns a false value, the message
680is not processed further.
681
682The basic :class:`Filter` functionality allows filtering by specific logger
683name. If this feature is used, messages sent to the named logger and its
684children are allowed through the filter, and all others dropped.
685
Benjamin Peterson058e31e2009-01-16 03:54:08 +0000686Module-Level Functions
687----------------------
688
Georg Brandl116aa622007-08-15 14:28:22 +0000689In addition to the classes described above, there are a number of module- level
690functions.
691
692
Georg Brandlcd7f32b2009-06-08 09:13:45 +0000693.. function:: getLogger(name=None)
Georg Brandl116aa622007-08-15 14:28:22 +0000694
Georg Brandlcd7f32b2009-06-08 09:13:45 +0000695 Return a logger with the specified name or, if name is ``None``, return a
Georg Brandl116aa622007-08-15 14:28:22 +0000696 logger which is the root logger of the hierarchy. If specified, the name is
697 typically a dot-separated hierarchical name like *"a"*, *"a.b"* or *"a.b.c.d"*.
698 Choice of these names is entirely up to the developer who is using logging.
699
700 All calls to this function with a given name return the same logger instance.
701 This means that logger instances never need to be passed between different parts
702 of an application.
703
704
705.. function:: getLoggerClass()
706
707 Return either the standard :class:`Logger` class, or the last class passed to
708 :func:`setLoggerClass`. This function may be called from within a new class
709 definition, to ensure that installing a customised :class:`Logger` class will
710 not undo customisations already applied by other code. For example::
711
712 class MyLogger(logging.getLoggerClass()):
713 # ... override behaviour here
714
715
Georg Brandlcd7f32b2009-06-08 09:13:45 +0000716.. function:: debug(msg, *args, **kwargs)
Georg Brandl116aa622007-08-15 14:28:22 +0000717
718 Logs a message with level :const:`DEBUG` on the root logger. The *msg* is the
719 message format string, and the *args* are the arguments which are merged into
720 *msg* using the string formatting operator. (Note that this means that you can
721 use keywords in the format string, together with a single dictionary argument.)
722
723 There are two keyword arguments in *kwargs* which are inspected: *exc_info*
724 which, if it does not evaluate as false, causes exception information to be
725 added to the logging message. If an exception tuple (in the format returned by
726 :func:`sys.exc_info`) is provided, it is used; otherwise, :func:`sys.exc_info`
727 is called to get the exception information.
728
729 The other optional keyword argument is *extra* which can be used to pass a
730 dictionary which is used to populate the __dict__ of the LogRecord created for
731 the logging event with user-defined attributes. These custom attributes can then
732 be used as you like. For example, they could be incorporated into logged
733 messages. For example::
734
735 FORMAT = "%(asctime)-15s %(clientip)s %(user)-8s %(message)s"
736 logging.basicConfig(format=FORMAT)
737 d = {'clientip': '192.168.0.1', 'user': 'fbloggs'}
738 logging.warning("Protocol problem: %s", "connection reset", extra=d)
739
Vinay Sajip4039aff2010-09-11 10:25:28 +0000740 would print something like::
Georg Brandl116aa622007-08-15 14:28:22 +0000741
742 2006-02-08 22:20:02,165 192.168.0.1 fbloggs Protocol problem: connection reset
743
744 The keys in the dictionary passed in *extra* should not clash with the keys used
745 by the logging system. (See the :class:`Formatter` documentation for more
746 information on which keys are used by the logging system.)
747
748 If you choose to use these attributes in logged messages, you need to exercise
749 some care. In the above example, for instance, the :class:`Formatter` has been
750 set up with a format string which expects 'clientip' and 'user' in the attribute
751 dictionary of the LogRecord. If these are missing, the message will not be
752 logged because a string formatting exception will occur. So in this case, you
753 always need to pass the *extra* dictionary with these keys.
754
755 While this might be annoying, this feature is intended for use in specialized
756 circumstances, such as multi-threaded servers where the same code executes in
757 many contexts, and interesting conditions which arise are dependent on this
758 context (such as remote client IP address and authenticated user name, in the
759 above example). In such circumstances, it is likely that specialized
760 :class:`Formatter`\ s would be used with particular :class:`Handler`\ s.
761
Georg Brandl116aa622007-08-15 14:28:22 +0000762
Georg Brandlcd7f32b2009-06-08 09:13:45 +0000763.. function:: info(msg, *args, **kwargs)
Georg Brandl116aa622007-08-15 14:28:22 +0000764
765 Logs a message with level :const:`INFO` on the root logger. The arguments are
766 interpreted as for :func:`debug`.
767
768
Georg Brandlcd7f32b2009-06-08 09:13:45 +0000769.. function:: warning(msg, *args, **kwargs)
Georg Brandl116aa622007-08-15 14:28:22 +0000770
771 Logs a message with level :const:`WARNING` on the root logger. The arguments are
772 interpreted as for :func:`debug`.
773
774
Georg Brandlcd7f32b2009-06-08 09:13:45 +0000775.. function:: error(msg, *args, **kwargs)
Georg Brandl116aa622007-08-15 14:28:22 +0000776
777 Logs a message with level :const:`ERROR` on the root logger. The arguments are
778 interpreted as for :func:`debug`.
779
780
Georg Brandlcd7f32b2009-06-08 09:13:45 +0000781.. function:: critical(msg, *args, **kwargs)
Georg Brandl116aa622007-08-15 14:28:22 +0000782
783 Logs a message with level :const:`CRITICAL` on the root logger. The arguments
784 are interpreted as for :func:`debug`.
785
786
Georg Brandlcd7f32b2009-06-08 09:13:45 +0000787.. function:: exception(msg, *args)
Georg Brandl116aa622007-08-15 14:28:22 +0000788
789 Logs a message with level :const:`ERROR` on the root logger. The arguments are
790 interpreted as for :func:`debug`. Exception info is added to the logging
791 message. This function should only be called from an exception handler.
792
793
Georg Brandlcd7f32b2009-06-08 09:13:45 +0000794.. function:: log(level, msg, *args, **kwargs)
Georg Brandl116aa622007-08-15 14:28:22 +0000795
796 Logs a message with level *level* on the root logger. The other arguments are
797 interpreted as for :func:`debug`.
798
799
800.. function:: disable(lvl)
801
802 Provides an overriding level *lvl* for all loggers which takes precedence over
803 the logger's own level. When the need arises to temporarily throttle logging
Benjamin Peterson886af962010-03-21 23:13:07 +0000804 output down across the whole application, this function can be useful. Its
805 effect is to disable all logging calls of severity *lvl* and below, so that
806 if you call it with a value of INFO, then all INFO and DEBUG events would be
807 discarded, whereas those of severity WARNING and above would be processed
808 according to the logger's effective level.
Georg Brandl116aa622007-08-15 14:28:22 +0000809
810
811.. function:: addLevelName(lvl, levelName)
812
813 Associates level *lvl* with text *levelName* in an internal dictionary, which is
814 used to map numeric levels to a textual representation, for example when a
815 :class:`Formatter` formats a message. This function can also be used to define
816 your own levels. The only constraints are that all levels used must be
817 registered using this function, levels should be positive integers and they
818 should increase in increasing order of severity.
819
820
821.. function:: getLevelName(lvl)
822
823 Returns the textual representation of logging level *lvl*. If the level is one
824 of the predefined levels :const:`CRITICAL`, :const:`ERROR`, :const:`WARNING`,
825 :const:`INFO` or :const:`DEBUG` then you get the corresponding string. If you
826 have associated levels with names using :func:`addLevelName` then the name you
827 have associated with *lvl* is returned. If a numeric value corresponding to one
828 of the defined levels is passed in, the corresponding string representation is
829 returned. Otherwise, the string "Level %s" % lvl is returned.
830
831
832.. function:: makeLogRecord(attrdict)
833
834 Creates and returns a new :class:`LogRecord` instance whose attributes are
835 defined by *attrdict*. This function is useful for taking a pickled
836 :class:`LogRecord` attribute dictionary, sent over a socket, and reconstituting
837 it as a :class:`LogRecord` instance at the receiving end.
838
839
Georg Brandlcd7f32b2009-06-08 09:13:45 +0000840.. function:: basicConfig(**kwargs)
Georg Brandl116aa622007-08-15 14:28:22 +0000841
842 Does basic configuration for the logging system by creating a
843 :class:`StreamHandler` with a default :class:`Formatter` and adding it to the
Vinay Sajipcbabd7e2009-10-10 20:32:36 +0000844 root logger. The functions :func:`debug`, :func:`info`, :func:`warning`,
Georg Brandl116aa622007-08-15 14:28:22 +0000845 :func:`error` and :func:`critical` will call :func:`basicConfig` automatically
846 if no handlers are defined for the root logger.
847
Vinay Sajipcbabd7e2009-10-10 20:32:36 +0000848 This function does nothing if the root logger already has handlers
849 configured for it.
850
Georg Brandl116aa622007-08-15 14:28:22 +0000851 The following keyword arguments are supported.
852
853 +--------------+---------------------------------------------+
854 | Format | Description |
855 +==============+=============================================+
856 | ``filename`` | Specifies that a FileHandler be created, |
857 | | using the specified filename, rather than a |
858 | | StreamHandler. |
859 +--------------+---------------------------------------------+
860 | ``filemode`` | Specifies the mode to open the file, if |
861 | | filename is specified (if filemode is |
862 | | unspecified, it defaults to 'a'). |
863 +--------------+---------------------------------------------+
864 | ``format`` | Use the specified format string for the |
865 | | handler. |
866 +--------------+---------------------------------------------+
867 | ``datefmt`` | Use the specified date/time format. |
868 +--------------+---------------------------------------------+
869 | ``level`` | Set the root logger level to the specified |
870 | | level. |
871 +--------------+---------------------------------------------+
872 | ``stream`` | Use the specified stream to initialize the |
873 | | StreamHandler. Note that this argument is |
874 | | incompatible with 'filename' - if both are |
875 | | present, 'stream' is ignored. |
876 +--------------+---------------------------------------------+
877
878
879.. function:: shutdown()
880
881 Informs the logging system to perform an orderly shutdown by flushing and
Christian Heimesb186d002008-03-18 15:15:01 +0000882 closing all handlers. This should be called at application exit and no
883 further use of the logging system should be made after this call.
Georg Brandl116aa622007-08-15 14:28:22 +0000884
885
886.. function:: setLoggerClass(klass)
887
888 Tells the logging system to use the class *klass* when instantiating a logger.
889 The class should define :meth:`__init__` such that only a name argument is
890 required, and the :meth:`__init__` should call :meth:`Logger.__init__`. This
891 function is typically called before any loggers are instantiated by applications
892 which need to use custom logger behavior.
893
894
895.. seealso::
896
897 :pep:`282` - A Logging System
898 The proposal which described this feature for inclusion in the Python standard
899 library.
900
Christian Heimes255f53b2007-12-08 15:33:56 +0000901 `Original Python logging package <http://www.red-dove.com/python_logging.html>`_
Georg Brandl116aa622007-08-15 14:28:22 +0000902 This is the original source for the :mod:`logging` package. The version of the
903 package available from this site is suitable for use with Python 1.5.2, 2.1.x
904 and 2.2.x, which do not include the :mod:`logging` package in the standard
905 library.
906
Vinay Sajip4039aff2010-09-11 10:25:28 +0000907.. _logger:
Georg Brandl116aa622007-08-15 14:28:22 +0000908
909Logger Objects
910--------------
911
912Loggers have the following attributes and methods. Note that Loggers are never
913instantiated directly, but always through the module-level function
914``logging.getLogger(name)``.
915
916
917.. attribute:: Logger.propagate
918
919 If this evaluates to false, logging messages are not passed by this logger or by
Benjamin Peterson22005fc2010-04-11 16:25:06 +0000920 its child loggers to the handlers of higher level (ancestor) loggers. The
921 constructor sets this attribute to 1.
Georg Brandl116aa622007-08-15 14:28:22 +0000922
923
924.. method:: Logger.setLevel(lvl)
925
926 Sets the threshold for this logger to *lvl*. Logging messages which are less
927 severe than *lvl* will be ignored. When a logger is created, the level is set to
928 :const:`NOTSET` (which causes all messages to be processed when the logger is
929 the root logger, or delegation to the parent when the logger is a non-root
930 logger). Note that the root logger is created with level :const:`WARNING`.
931
932 The term "delegation to the parent" means that if a logger has a level of
933 NOTSET, its chain of ancestor loggers is traversed until either an ancestor with
934 a level other than NOTSET is found, or the root is reached.
935
936 If an ancestor is found with a level other than NOTSET, then that ancestor's
937 level is treated as the effective level of the logger where the ancestor search
938 began, and is used to determine how a logging event is handled.
939
940 If the root is reached, and it has a level of NOTSET, then all messages will be
941 processed. Otherwise, the root's level will be used as the effective level.
942
943
944.. method:: Logger.isEnabledFor(lvl)
945
946 Indicates if a message of severity *lvl* would be processed by this logger.
947 This method checks first the module-level level set by
948 ``logging.disable(lvl)`` and then the logger's effective level as determined
949 by :meth:`getEffectiveLevel`.
950
951
952.. method:: Logger.getEffectiveLevel()
953
954 Indicates the effective level for this logger. If a value other than
955 :const:`NOTSET` has been set using :meth:`setLevel`, it is returned. Otherwise,
956 the hierarchy is traversed towards the root until a value other than
957 :const:`NOTSET` is found, and that value is returned.
958
959
Benjamin Peterson22005fc2010-04-11 16:25:06 +0000960.. method:: Logger.getChild(suffix)
961
962 Returns a logger which is a descendant to this logger, as determined by the suffix.
963 Thus, ``logging.getLogger('abc').getChild('def.ghi')`` would return the same
964 logger as would be returned by ``logging.getLogger('abc.def.ghi')``. This is a
965 convenience method, useful when the parent logger is named using e.g. ``__name__``
966 rather than a literal string.
967
968 .. versionadded:: 3.2
969
Georg Brandl67b21b72010-08-17 15:07:14 +0000970
Georg Brandlcd7f32b2009-06-08 09:13:45 +0000971.. method:: Logger.debug(msg, *args, **kwargs)
Georg Brandl116aa622007-08-15 14:28:22 +0000972
973 Logs a message with level :const:`DEBUG` on this logger. The *msg* is the
974 message format string, and the *args* are the arguments which are merged into
975 *msg* using the string formatting operator. (Note that this means that you can
976 use keywords in the format string, together with a single dictionary argument.)
977
978 There are two keyword arguments in *kwargs* which are inspected: *exc_info*
979 which, if it does not evaluate as false, causes exception information to be
980 added to the logging message. If an exception tuple (in the format returned by
981 :func:`sys.exc_info`) is provided, it is used; otherwise, :func:`sys.exc_info`
982 is called to get the exception information.
983
984 The other optional keyword argument is *extra* which can be used to pass a
985 dictionary which is used to populate the __dict__ of the LogRecord created for
986 the logging event with user-defined attributes. These custom attributes can then
987 be used as you like. For example, they could be incorporated into logged
988 messages. For example::
989
990 FORMAT = "%(asctime)-15s %(clientip)s %(user)-8s %(message)s"
991 logging.basicConfig(format=FORMAT)
Georg Brandl9afde1c2007-11-01 20:32:30 +0000992 d = { 'clientip' : '192.168.0.1', 'user' : 'fbloggs' }
Georg Brandl116aa622007-08-15 14:28:22 +0000993 logger = logging.getLogger("tcpserver")
994 logger.warning("Protocol problem: %s", "connection reset", extra=d)
995
996 would print something like ::
997
998 2006-02-08 22:20:02,165 192.168.0.1 fbloggs Protocol problem: connection reset
999
1000 The keys in the dictionary passed in *extra* should not clash with the keys used
1001 by the logging system. (See the :class:`Formatter` documentation for more
1002 information on which keys are used by the logging system.)
1003
1004 If you choose to use these attributes in logged messages, you need to exercise
1005 some care. In the above example, for instance, the :class:`Formatter` has been
1006 set up with a format string which expects 'clientip' and 'user' in the attribute
1007 dictionary of the LogRecord. If these are missing, the message will not be
1008 logged because a string formatting exception will occur. So in this case, you
1009 always need to pass the *extra* dictionary with these keys.
1010
1011 While this might be annoying, this feature is intended for use in specialized
1012 circumstances, such as multi-threaded servers where the same code executes in
1013 many contexts, and interesting conditions which arise are dependent on this
1014 context (such as remote client IP address and authenticated user name, in the
1015 above example). In such circumstances, it is likely that specialized
1016 :class:`Formatter`\ s would be used with particular :class:`Handler`\ s.
1017
Georg Brandl116aa622007-08-15 14:28:22 +00001018
Georg Brandlcd7f32b2009-06-08 09:13:45 +00001019.. method:: Logger.info(msg, *args, **kwargs)
Georg Brandl116aa622007-08-15 14:28:22 +00001020
1021 Logs a message with level :const:`INFO` on this logger. The arguments are
1022 interpreted as for :meth:`debug`.
1023
1024
Georg Brandlcd7f32b2009-06-08 09:13:45 +00001025.. method:: Logger.warning(msg, *args, **kwargs)
Georg Brandl116aa622007-08-15 14:28:22 +00001026
1027 Logs a message with level :const:`WARNING` on this logger. The arguments are
1028 interpreted as for :meth:`debug`.
1029
1030
Georg Brandlcd7f32b2009-06-08 09:13:45 +00001031.. method:: Logger.error(msg, *args, **kwargs)
Georg Brandl116aa622007-08-15 14:28:22 +00001032
1033 Logs a message with level :const:`ERROR` on this logger. The arguments are
1034 interpreted as for :meth:`debug`.
1035
1036
Georg Brandlcd7f32b2009-06-08 09:13:45 +00001037.. method:: Logger.critical(msg, *args, **kwargs)
Georg Brandl116aa622007-08-15 14:28:22 +00001038
1039 Logs a message with level :const:`CRITICAL` on this logger. The arguments are
1040 interpreted as for :meth:`debug`.
1041
1042
Georg Brandlcd7f32b2009-06-08 09:13:45 +00001043.. method:: Logger.log(lvl, msg, *args, **kwargs)
Georg Brandl116aa622007-08-15 14:28:22 +00001044
1045 Logs a message with integer level *lvl* on this logger. The other arguments are
1046 interpreted as for :meth:`debug`.
1047
1048
Georg Brandlcd7f32b2009-06-08 09:13:45 +00001049.. method:: Logger.exception(msg, *args)
Georg Brandl116aa622007-08-15 14:28:22 +00001050
1051 Logs a message with level :const:`ERROR` on this logger. The arguments are
1052 interpreted as for :meth:`debug`. Exception info is added to the logging
1053 message. This method should only be called from an exception handler.
1054
1055
1056.. method:: Logger.addFilter(filt)
1057
1058 Adds the specified filter *filt* to this logger.
1059
1060
1061.. method:: Logger.removeFilter(filt)
1062
1063 Removes the specified filter *filt* from this logger.
1064
1065
1066.. method:: Logger.filter(record)
1067
1068 Applies this logger's filters to the record and returns a true value if the
1069 record is to be processed.
1070
1071
1072.. method:: Logger.addHandler(hdlr)
1073
1074 Adds the specified handler *hdlr* to this logger.
1075
1076
1077.. method:: Logger.removeHandler(hdlr)
1078
1079 Removes the specified handler *hdlr* from this logger.
1080
1081
1082.. method:: Logger.findCaller()
1083
1084 Finds the caller's source filename and line number. Returns the filename, line
1085 number and function name as a 3-element tuple.
1086
Georg Brandl116aa622007-08-15 14:28:22 +00001087
1088.. method:: Logger.handle(record)
1089
1090 Handles a record by passing it to all handlers associated with this logger and
1091 its ancestors (until a false value of *propagate* is found). This method is used
1092 for unpickled records received from a socket, as well as those created locally.
Georg Brandl502d9a52009-07-26 15:02:41 +00001093 Logger-level filtering is applied using :meth:`~Logger.filter`.
Georg Brandl116aa622007-08-15 14:28:22 +00001094
1095
Georg Brandlcd7f32b2009-06-08 09:13:45 +00001096.. method:: Logger.makeRecord(name, lvl, fn, lno, msg, args, exc_info, func=None, extra=None)
Georg Brandl116aa622007-08-15 14:28:22 +00001097
1098 This is a factory method which can be overridden in subclasses to create
1099 specialized :class:`LogRecord` instances.
1100
Georg Brandl116aa622007-08-15 14:28:22 +00001101
1102.. _minimal-example:
1103
1104Basic example
1105-------------
1106
Georg Brandl116aa622007-08-15 14:28:22 +00001107The :mod:`logging` package provides a lot of flexibility, and its configuration
1108can appear daunting. This section demonstrates that simple use of the logging
1109package is possible.
1110
1111The simplest example shows logging to the console::
1112
1113 import logging
1114
1115 logging.debug('A debug message')
1116 logging.info('Some information')
1117 logging.warning('A shot across the bows')
1118
1119If you run the above script, you'll see this::
1120
1121 WARNING:root:A shot across the bows
1122
1123Because no particular logger was specified, the system used the root logger. The
1124debug and info messages didn't appear because by default, the root logger is
1125configured to only handle messages with a severity of WARNING or above. The
1126message format is also a configuration default, as is the output destination of
1127the messages - ``sys.stderr``. The severity level, the message format and
1128destination can be easily changed, as shown in the example below::
1129
1130 import logging
1131
1132 logging.basicConfig(level=logging.DEBUG,
1133 format='%(asctime)s %(levelname)s %(message)s',
Benjamin Petersond7c3ed52010-06-27 22:32:30 +00001134 filename='myapp.log',
Georg Brandl116aa622007-08-15 14:28:22 +00001135 filemode='w')
1136 logging.debug('A debug message')
1137 logging.info('Some information')
1138 logging.warning('A shot across the bows')
1139
1140The :meth:`basicConfig` method is used to change the configuration defaults,
Benjamin Petersond7c3ed52010-06-27 22:32:30 +00001141which results in output (written to ``myapp.log``) which should look
Georg Brandl116aa622007-08-15 14:28:22 +00001142something like the following::
1143
1144 2004-07-02 13:00:08,743 DEBUG A debug message
1145 2004-07-02 13:00:08,743 INFO Some information
1146 2004-07-02 13:00:08,743 WARNING A shot across the bows
1147
1148This time, all messages with a severity of DEBUG or above were handled, and the
1149format of the messages was also changed, and output went to the specified file
1150rather than the console.
1151
Georg Brandl81ac1ce2007-08-31 17:17:17 +00001152.. XXX logging should probably be updated for new string formatting!
Georg Brandl4b491312007-08-31 09:22:56 +00001153
1154Formatting uses the old Python string formatting - see section
1155:ref:`old-string-formatting`. The format string takes the following common
Georg Brandl116aa622007-08-15 14:28:22 +00001156specifiers. For a complete list of specifiers, consult the :class:`Formatter`
1157documentation.
1158
1159+-------------------+-----------------------------------------------+
1160| Format | Description |
1161+===================+===============================================+
1162| ``%(name)s`` | Name of the logger (logging channel). |
1163+-------------------+-----------------------------------------------+
1164| ``%(levelname)s`` | Text logging level for the message |
1165| | (``'DEBUG'``, ``'INFO'``, ``'WARNING'``, |
1166| | ``'ERROR'``, ``'CRITICAL'``). |
1167+-------------------+-----------------------------------------------+
1168| ``%(asctime)s`` | Human-readable time when the |
1169| | :class:`LogRecord` was created. By default |
1170| | this is of the form "2003-07-08 16:49:45,896" |
1171| | (the numbers after the comma are millisecond |
1172| | portion of the time). |
1173+-------------------+-----------------------------------------------+
1174| ``%(message)s`` | The logged message. |
1175+-------------------+-----------------------------------------------+
1176
1177To change the date/time format, you can pass an additional keyword parameter,
1178*datefmt*, as in the following::
1179
1180 import logging
1181
1182 logging.basicConfig(level=logging.DEBUG,
1183 format='%(asctime)s %(levelname)-8s %(message)s',
1184 datefmt='%a, %d %b %Y %H:%M:%S',
1185 filename='/temp/myapp.log',
1186 filemode='w')
1187 logging.debug('A debug message')
1188 logging.info('Some information')
1189 logging.warning('A shot across the bows')
1190
1191which would result in output like ::
1192
1193 Fri, 02 Jul 2004 13:06:18 DEBUG A debug message
1194 Fri, 02 Jul 2004 13:06:18 INFO Some information
1195 Fri, 02 Jul 2004 13:06:18 WARNING A shot across the bows
1196
1197The date format string follows the requirements of :func:`strftime` - see the
1198documentation for the :mod:`time` module.
1199
1200If, instead of sending logging output to the console or a file, you'd rather use
1201a file-like object which you have created separately, you can pass it to
1202:func:`basicConfig` using the *stream* keyword argument. Note that if both
1203*stream* and *filename* keyword arguments are passed, the *stream* argument is
1204ignored.
1205
1206Of course, you can put variable information in your output. To do this, simply
1207have the message be a format string and pass in additional arguments containing
1208the variable information, as in the following example::
1209
1210 import logging
1211
1212 logging.basicConfig(level=logging.DEBUG,
1213 format='%(asctime)s %(levelname)-8s %(message)s',
1214 datefmt='%a, %d %b %Y %H:%M:%S',
1215 filename='/temp/myapp.log',
1216 filemode='w')
1217 logging.error('Pack my box with %d dozen %s', 5, 'liquor jugs')
1218
1219which would result in ::
1220
1221 Wed, 21 Jul 2004 15:35:16 ERROR Pack my box with 5 dozen liquor jugs
1222
1223
1224.. _multiple-destinations:
1225
1226Logging to multiple destinations
1227--------------------------------
1228
1229Let's say you want to log to console and file with different message formats and
1230in differing circumstances. Say you want to log messages with levels of DEBUG
1231and higher to file, and those messages at level INFO and higher to the console.
1232Let's also assume that the file should contain timestamps, but the console
1233messages should not. Here's how you can achieve this::
1234
1235 import logging
1236
1237 # set up logging to file - see previous section for more details
1238 logging.basicConfig(level=logging.DEBUG,
1239 format='%(asctime)s %(name)-12s %(levelname)-8s %(message)s',
1240 datefmt='%m-%d %H:%M',
1241 filename='/temp/myapp.log',
1242 filemode='w')
1243 # define a Handler which writes INFO messages or higher to the sys.stderr
1244 console = logging.StreamHandler()
1245 console.setLevel(logging.INFO)
1246 # set a format which is simpler for console use
1247 formatter = logging.Formatter('%(name)-12s: %(levelname)-8s %(message)s')
1248 # tell the handler to use this format
1249 console.setFormatter(formatter)
1250 # add the handler to the root logger
1251 logging.getLogger('').addHandler(console)
1252
1253 # Now, we can log to the root logger, or any other logger. First the root...
1254 logging.info('Jackdaws love my big sphinx of quartz.')
1255
1256 # Now, define a couple of other loggers which might represent areas in your
1257 # application:
1258
1259 logger1 = logging.getLogger('myapp.area1')
1260 logger2 = logging.getLogger('myapp.area2')
1261
1262 logger1.debug('Quick zephyrs blow, vexing daft Jim.')
1263 logger1.info('How quickly daft jumping zebras vex.')
1264 logger2.warning('Jail zesty vixen who grabbed pay from quack.')
1265 logger2.error('The five boxing wizards jump quickly.')
1266
1267When you run this, on the console you will see ::
1268
1269 root : INFO Jackdaws love my big sphinx of quartz.
1270 myapp.area1 : INFO How quickly daft jumping zebras vex.
1271 myapp.area2 : WARNING Jail zesty vixen who grabbed pay from quack.
1272 myapp.area2 : ERROR The five boxing wizards jump quickly.
1273
1274and in the file you will see something like ::
1275
1276 10-22 22:19 root INFO Jackdaws love my big sphinx of quartz.
1277 10-22 22:19 myapp.area1 DEBUG Quick zephyrs blow, vexing daft Jim.
1278 10-22 22:19 myapp.area1 INFO How quickly daft jumping zebras vex.
1279 10-22 22:19 myapp.area2 WARNING Jail zesty vixen who grabbed pay from quack.
1280 10-22 22:19 myapp.area2 ERROR The five boxing wizards jump quickly.
1281
1282As you can see, the DEBUG message only shows up in the file. The other messages
1283are sent to both destinations.
1284
1285This example uses console and file handlers, but you can use any number and
1286combination of handlers you choose.
1287
Vinay Sajip3ee22ec2009-08-20 22:05:10 +00001288.. _logging-exceptions:
1289
1290Exceptions raised during logging
1291--------------------------------
1292
1293The logging package is designed to swallow exceptions which occur while logging
1294in production. This is so that errors which occur while handling logging events
1295- such as logging misconfiguration, network or other similar errors - do not
1296cause the application using logging to terminate prematurely.
1297
1298:class:`SystemExit` and :class:`KeyboardInterrupt` exceptions are never
1299swallowed. Other exceptions which occur during the :meth:`emit` method of a
1300:class:`Handler` subclass are passed to its :meth:`handleError` method.
1301
1302The default implementation of :meth:`handleError` in :class:`Handler` checks
Georg Brandlef871f62010-03-12 10:06:40 +00001303to see if a module-level variable, :data:`raiseExceptions`, is set. If set, a
1304traceback is printed to :data:`sys.stderr`. If not set, the exception is swallowed.
Vinay Sajip3ee22ec2009-08-20 22:05:10 +00001305
Georg Brandlef871f62010-03-12 10:06:40 +00001306**Note:** The default value of :data:`raiseExceptions` is ``True``. This is because
Vinay Sajip3ee22ec2009-08-20 22:05:10 +00001307during development, you typically want to be notified of any exceptions that
Georg Brandlef871f62010-03-12 10:06:40 +00001308occur. It's advised that you set :data:`raiseExceptions` to ``False`` for production
Vinay Sajip3ee22ec2009-08-20 22:05:10 +00001309usage.
Georg Brandl116aa622007-08-15 14:28:22 +00001310
Christian Heimes790c8232008-01-07 21:14:23 +00001311.. _context-info:
1312
1313Adding contextual information to your logging output
1314----------------------------------------------------
1315
1316Sometimes you want logging output to contain contextual information in
1317addition to the parameters passed to the logging call. For example, in a
1318networked application, it may be desirable to log client-specific information
1319in the log (e.g. remote client's username, or IP address). Although you could
1320use the *extra* parameter to achieve this, it's not always convenient to pass
1321the information in this way. While it might be tempting to create
1322:class:`Logger` instances on a per-connection basis, this is not a good idea
1323because these instances are not garbage collected. While this is not a problem
1324in practice, when the number of :class:`Logger` instances is dependent on the
1325level of granularity you want to use in logging an application, it could
1326be hard to manage if the number of :class:`Logger` instances becomes
1327effectively unbounded.
1328
Vinay Sajipc31be632010-09-06 22:18:20 +00001329
1330Using LoggerAdapters to impart contextual information
1331^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
1332
Christian Heimes04c420f2008-01-18 18:40:46 +00001333An easy way in which you can pass contextual information to be output along
1334with logging event information is to use the :class:`LoggerAdapter` class.
1335This class is designed to look like a :class:`Logger`, so that you can call
1336:meth:`debug`, :meth:`info`, :meth:`warning`, :meth:`error`,
1337:meth:`exception`, :meth:`critical` and :meth:`log`. These methods have the
1338same signatures as their counterparts in :class:`Logger`, so you can use the
1339two types of instances interchangeably.
Christian Heimes790c8232008-01-07 21:14:23 +00001340
Christian Heimes04c420f2008-01-18 18:40:46 +00001341When you create an instance of :class:`LoggerAdapter`, you pass it a
1342:class:`Logger` instance and a dict-like object which contains your contextual
1343information. When you call one of the logging methods on an instance of
1344:class:`LoggerAdapter`, it delegates the call to the underlying instance of
1345:class:`Logger` passed to its constructor, and arranges to pass the contextual
1346information in the delegated call. Here's a snippet from the code of
1347:class:`LoggerAdapter`::
Christian Heimes790c8232008-01-07 21:14:23 +00001348
Christian Heimes04c420f2008-01-18 18:40:46 +00001349 def debug(self, msg, *args, **kwargs):
1350 """
1351 Delegate a debug call to the underlying logger, after adding
1352 contextual information from this adapter instance.
1353 """
1354 msg, kwargs = self.process(msg, kwargs)
1355 self.logger.debug(msg, *args, **kwargs)
Christian Heimes790c8232008-01-07 21:14:23 +00001356
Christian Heimes04c420f2008-01-18 18:40:46 +00001357The :meth:`process` method of :class:`LoggerAdapter` is where the contextual
1358information is added to the logging output. It's passed the message and
1359keyword arguments of the logging call, and it passes back (potentially)
1360modified versions of these to use in the call to the underlying logger. The
1361default implementation of this method leaves the message alone, but inserts
1362an "extra" key in the keyword argument whose value is the dict-like object
1363passed to the constructor. Of course, if you had passed an "extra" keyword
1364argument in the call to the adapter, it will be silently overwritten.
Christian Heimes790c8232008-01-07 21:14:23 +00001365
Christian Heimes04c420f2008-01-18 18:40:46 +00001366The advantage of using "extra" is that the values in the dict-like object are
1367merged into the :class:`LogRecord` instance's __dict__, allowing you to use
1368customized strings with your :class:`Formatter` instances which know about
1369the keys of the dict-like object. If you need a different method, e.g. if you
1370want to prepend or append the contextual information to the message string,
1371you just need to subclass :class:`LoggerAdapter` and override :meth:`process`
1372to do what you need. Here's an example script which uses this class, which
1373also illustrates what dict-like behaviour is needed from an arbitrary
1374"dict-like" object for use in the constructor::
1375
Christian Heimes587c2bf2008-01-19 16:21:02 +00001376 import logging
Georg Brandl86def6c2008-01-21 20:36:10 +00001377
Christian Heimes587c2bf2008-01-19 16:21:02 +00001378 class ConnInfo:
1379 """
1380 An example class which shows how an arbitrary class can be used as
1381 the 'extra' context information repository passed to a LoggerAdapter.
1382 """
Georg Brandl86def6c2008-01-21 20:36:10 +00001383
Christian Heimes587c2bf2008-01-19 16:21:02 +00001384 def __getitem__(self, name):
1385 """
1386 To allow this instance to look like a dict.
1387 """
1388 from random import choice
1389 if name == "ip":
1390 result = choice(["127.0.0.1", "192.168.0.1"])
1391 elif name == "user":
1392 result = choice(["jim", "fred", "sheila"])
1393 else:
1394 result = self.__dict__.get(name, "?")
1395 return result
Georg Brandl86def6c2008-01-21 20:36:10 +00001396
Christian Heimes587c2bf2008-01-19 16:21:02 +00001397 def __iter__(self):
1398 """
1399 To allow iteration over keys, which will be merged into
1400 the LogRecord dict before formatting and output.
1401 """
1402 keys = ["ip", "user"]
1403 keys.extend(self.__dict__.keys())
1404 return keys.__iter__()
Georg Brandl86def6c2008-01-21 20:36:10 +00001405
Christian Heimes587c2bf2008-01-19 16:21:02 +00001406 if __name__ == "__main__":
1407 from random import choice
1408 levels = (logging.DEBUG, logging.INFO, logging.WARNING, logging.ERROR, logging.CRITICAL)
1409 a1 = logging.LoggerAdapter(logging.getLogger("a.b.c"),
1410 { "ip" : "123.231.231.123", "user" : "sheila" })
1411 logging.basicConfig(level=logging.DEBUG,
1412 format="%(asctime)-15s %(name)-5s %(levelname)-8s IP: %(ip)-15s User: %(user)-8s %(message)s")
1413 a1.debug("A debug message")
1414 a1.info("An info message with %s", "some parameters")
1415 a2 = logging.LoggerAdapter(logging.getLogger("d.e.f"), ConnInfo())
1416 for x in range(10):
1417 lvl = choice(levels)
1418 lvlname = logging.getLevelName(lvl)
1419 a2.log(lvl, "A message at %s level with %d %s", lvlname, 2, "parameters")
Christian Heimes04c420f2008-01-18 18:40:46 +00001420
1421When this script is run, the output should look something like this::
1422
Christian Heimes587c2bf2008-01-19 16:21:02 +00001423 2008-01-18 14:49:54,023 a.b.c DEBUG IP: 123.231.231.123 User: sheila A debug message
1424 2008-01-18 14:49:54,023 a.b.c INFO IP: 123.231.231.123 User: sheila An info message with some parameters
1425 2008-01-18 14:49:54,023 d.e.f CRITICAL IP: 192.168.0.1 User: jim A message at CRITICAL level with 2 parameters
1426 2008-01-18 14:49:54,033 d.e.f INFO IP: 192.168.0.1 User: jim A message at INFO level with 2 parameters
1427 2008-01-18 14:49:54,033 d.e.f WARNING IP: 192.168.0.1 User: sheila A message at WARNING level with 2 parameters
1428 2008-01-18 14:49:54,033 d.e.f ERROR IP: 127.0.0.1 User: fred A message at ERROR level with 2 parameters
1429 2008-01-18 14:49:54,033 d.e.f ERROR IP: 127.0.0.1 User: sheila A message at ERROR level with 2 parameters
1430 2008-01-18 14:49:54,033 d.e.f WARNING IP: 192.168.0.1 User: sheila A message at WARNING level with 2 parameters
1431 2008-01-18 14:49:54,033 d.e.f WARNING IP: 192.168.0.1 User: jim A message at WARNING level with 2 parameters
1432 2008-01-18 14:49:54,033 d.e.f INFO IP: 192.168.0.1 User: fred A message at INFO level with 2 parameters
1433 2008-01-18 14:49:54,033 d.e.f WARNING IP: 192.168.0.1 User: sheila A message at WARNING level with 2 parameters
1434 2008-01-18 14:49:54,033 d.e.f WARNING IP: 127.0.0.1 User: jim A message at WARNING level with 2 parameters
Christian Heimes04c420f2008-01-18 18:40:46 +00001435
Christian Heimes790c8232008-01-07 21:14:23 +00001436
Vinay Sajipc31be632010-09-06 22:18:20 +00001437Using Filters to impart contextual information
1438^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
1439
1440You can also add contextual information to log output using a user-defined
1441:class:`Filter`. ``Filter`` instances are allowed to modify the ``LogRecords``
1442passed to them, including adding additional attributes which can then be output
1443using a suitable format string, or if needed a custom :class:`Formatter`.
1444
1445For example in a web application, the request being processed (or at least,
1446the interesting parts of it) can be stored in a threadlocal
1447(:class:`threading.local`) variable, and then accessed from a ``Filter`` to
1448add, say, information from the request - say, the remote IP address and remote
1449user's username - to the ``LogRecord``, using the attribute names 'ip' and
1450'user' as in the ``LoggerAdapter`` example above. In that case, the same format
1451string can be used to get similar output to that shown above. Here's an example
1452script::
1453
1454 import logging
1455 from random import choice
1456
1457 class ContextFilter(logging.Filter):
1458 """
1459 This is a filter which injects contextual information into the log.
1460
1461 Rather than use actual contextual information, we just use random
1462 data in this demo.
1463 """
1464
1465 USERS = ['jim', 'fred', 'sheila']
1466 IPS = ['123.231.231.123', '127.0.0.1', '192.168.0.1']
1467
1468 def filter(self, record):
1469
1470 record.ip = choice(ContextFilter.IPS)
1471 record.user = choice(ContextFilter.USERS)
1472 return True
1473
1474 if __name__ == "__main__":
1475 levels = (logging.DEBUG, logging.INFO, logging.WARNING, logging.ERROR, logging.CRITICAL)
1476 a1 = logging.LoggerAdapter(logging.getLogger("a.b.c"),
1477 { "ip" : "123.231.231.123", "user" : "sheila" })
1478 logging.basicConfig(level=logging.DEBUG,
1479 format="%(asctime)-15s %(name)-5s %(levelname)-8s IP: %(ip)-15s User: %(user)-8s %(message)s")
1480 a1 = logging.getLogger("a.b.c")
1481 a2 = logging.getLogger("d.e.f")
1482
1483 f = ContextFilter()
1484 a1.addFilter(f)
1485 a2.addFilter(f)
1486 a1.debug("A debug message")
1487 a1.info("An info message with %s", "some parameters")
1488 for x in range(10):
1489 lvl = choice(levels)
1490 lvlname = logging.getLevelName(lvl)
1491 a2.log(lvl, "A message at %s level with %d %s", lvlname, 2, "parameters")
1492
1493which, when run, produces something like::
1494
1495 2010-09-06 22:38:15,292 a.b.c DEBUG IP: 123.231.231.123 User: fred A debug message
1496 2010-09-06 22:38:15,300 a.b.c INFO IP: 192.168.0.1 User: sheila An info message with some parameters
1497 2010-09-06 22:38:15,300 d.e.f CRITICAL IP: 127.0.0.1 User: sheila A message at CRITICAL level with 2 parameters
1498 2010-09-06 22:38:15,300 d.e.f ERROR IP: 127.0.0.1 User: jim A message at ERROR level with 2 parameters
1499 2010-09-06 22:38:15,300 d.e.f DEBUG IP: 127.0.0.1 User: sheila A message at DEBUG level with 2 parameters
1500 2010-09-06 22:38:15,300 d.e.f ERROR IP: 123.231.231.123 User: fred A message at ERROR level with 2 parameters
1501 2010-09-06 22:38:15,300 d.e.f CRITICAL IP: 192.168.0.1 User: jim A message at CRITICAL level with 2 parameters
1502 2010-09-06 22:38:15,300 d.e.f CRITICAL IP: 127.0.0.1 User: sheila A message at CRITICAL level with 2 parameters
1503 2010-09-06 22:38:15,300 d.e.f DEBUG IP: 192.168.0.1 User: jim A message at DEBUG level with 2 parameters
1504 2010-09-06 22:38:15,301 d.e.f ERROR IP: 127.0.0.1 User: sheila A message at ERROR level with 2 parameters
1505 2010-09-06 22:38:15,301 d.e.f DEBUG IP: 123.231.231.123 User: fred A message at DEBUG level with 2 parameters
1506 2010-09-06 22:38:15,301 d.e.f INFO IP: 123.231.231.123 User: fred A message at INFO level with 2 parameters
1507
1508
Vinay Sajipd31f3632010-06-29 15:31:15 +00001509.. _multiple-processes:
1510
Vinay Sajipa7471bf2009-08-15 23:23:37 +00001511Logging to a single file from multiple processes
1512------------------------------------------------
1513
1514Although logging is thread-safe, and logging to a single file from multiple
1515threads in a single process *is* supported, logging to a single file from
1516*multiple processes* is *not* supported, because there is no standard way to
1517serialize access to a single file across multiple processes in Python. If you
Vinay Sajip121a1c42010-09-08 10:46:15 +00001518need to log to a single file from multiple processes, one way of doing this is
1519to have all the processes log to a :class:`SocketHandler`, and have a separate
1520process which implements a socket server which reads from the socket and logs
1521to file. (If you prefer, you can dedicate one thread in one of the existing
1522processes to perform this function.) The following section documents this
1523approach in more detail and includes a working socket receiver which can be
1524used as a starting point for you to adapt in your own applications.
Vinay Sajipa7471bf2009-08-15 23:23:37 +00001525
Vinay Sajip5a92b132009-08-15 23:35:08 +00001526If you are using a recent version of Python which includes the
Vinay Sajip121a1c42010-09-08 10:46:15 +00001527:mod:`multiprocessing` module, you could write your own handler which uses the
Vinay Sajip5a92b132009-08-15 23:35:08 +00001528:class:`Lock` class from this module to serialize access to the file from
1529your processes. The existing :class:`FileHandler` and subclasses do not make
1530use of :mod:`multiprocessing` at present, though they may do so in the future.
Vinay Sajip8c6b0a52009-08-17 13:17:47 +00001531Note that at present, the :mod:`multiprocessing` module does not provide
1532working lock functionality on all platforms (see
1533http://bugs.python.org/issue3770).
Vinay Sajip5a92b132009-08-15 23:35:08 +00001534
Vinay Sajip121a1c42010-09-08 10:46:15 +00001535.. currentmodule:: logging.handlers
1536
1537Alternatively, you can use a ``Queue`` and a :class:`QueueHandler` to send
1538all logging events to one of the processes in your multi-process application.
1539The following example script demonstrates how you can do this; in the example
1540a separate listener process listens for events sent by other processes and logs
1541them according to its own logging configuration. Although the example only
1542demonstrates one way of doing it (for example, you may want to use a listener
1543thread rather than a separate listener process - the implementation would be
1544analogous) it does allow for completely different logging configurations for
1545the listener and the other processes in your application, and can be used as
1546the basis for code meeting your own specific requirements::
1547
1548 # You'll need these imports in your own code
1549 import logging
1550 import logging.handlers
1551 import multiprocessing
1552
1553 # Next two import lines for this demo only
1554 from random import choice, random
1555 import time
1556
1557 #
1558 # Because you'll want to define the logging configurations for listener and workers, the
1559 # listener and worker process functions take a configurer parameter which is a callable
1560 # for configuring logging for that process. These functions are also passed the queue,
1561 # which they use for communication.
1562 #
1563 # In practice, you can configure the listener however you want, but note that in this
1564 # simple example, the listener does not apply level or filter logic to received records.
1565 # In practice, you would probably want to do ths logic in the worker processes, to avoid
1566 # sending events which would be filtered out between processes.
1567 #
1568 # The size of the rotated files is made small so you can see the results easily.
1569 def listener_configurer():
1570 root = logging.getLogger()
1571 h = logging.handlers.RotatingFileHandler('/tmp/mptest.log', 'a', 300, 10)
1572 f = logging.Formatter('%(asctime)s %(processName)-10s %(name)s %(levelname)-8s %(message)s')
1573 h.setFormatter(f)
1574 root.addHandler(h)
1575
1576 # This is the listener process top-level loop: wait for logging events
1577 # (LogRecords)on the queue and handle them, quit when you get a None for a
1578 # LogRecord.
1579 def listener_process(queue, configurer):
1580 configurer()
1581 while True:
1582 try:
1583 record = queue.get()
1584 if record is None: # We send this as a sentinel to tell the listener to quit.
1585 break
1586 logger = logging.getLogger(record.name)
1587 logger.handle(record) # No level or filter logic applied - just do it!
1588 except (KeyboardInterrupt, SystemExit):
1589 raise
1590 except:
1591 import sys, traceback
1592 print >> sys.stderr, 'Whoops! Problem:'
1593 traceback.print_exc(file=sys.stderr)
1594
1595 # Arrays used for random selections in this demo
1596
1597 LEVELS = [logging.DEBUG, logging.INFO, logging.WARNING,
1598 logging.ERROR, logging.CRITICAL]
1599
1600 LOGGERS = ['a.b.c', 'd.e.f']
1601
1602 MESSAGES = [
1603 'Random message #1',
1604 'Random message #2',
1605 'Random message #3',
1606 ]
1607
1608 # The worker configuration is done at the start of the worker process run.
1609 # Note that on Windows you can't rely on fork semantics, so each process
1610 # will run the logging configuration code when it starts.
1611 def worker_configurer(queue):
1612 h = logging.handlers.QueueHandler(queue) # Just the one handler needed
1613 root = logging.getLogger()
1614 root.addHandler(h)
1615 root.setLevel(logging.DEBUG) # send all messages, for demo; no other level or filter logic applied.
1616
1617 # This is the worker process top-level loop, which just logs ten events with
1618 # random intervening delays before terminating.
1619 # The print messages are just so you know it's doing something!
1620 def worker_process(queue, configurer):
1621 configurer(queue)
1622 name = multiprocessing.current_process().name
1623 print('Worker started: %s' % name)
1624 for i in range(10):
1625 time.sleep(random())
1626 logger = logging.getLogger(choice(LOGGERS))
1627 level = choice(LEVELS)
1628 message = choice(MESSAGES)
1629 logger.log(level, message)
1630 print('Worker finished: %s' % name)
1631
1632 # Here's where the demo gets orchestrated. Create the queue, create and start
1633 # the listener, create ten workers and start them, wait for them to finish,
1634 # then send a None to the queue to tell the listener to finish.
1635 def main():
1636 queue = multiprocessing.Queue(-1)
1637 listener = multiprocessing.Process(target=listener_process,
1638 args=(queue, listener_configurer))
1639 listener.start()
1640 workers = []
1641 for i in range(10):
1642 worker = multiprocessing.Process(target=worker_process,
1643 args=(queue, worker_configurer))
1644 workers.append(worker)
1645 worker.start()
1646 for w in workers:
1647 w.join()
1648 queue.put_nowait(None)
1649 listener.join()
1650
1651 if __name__ == '__main__':
1652 main()
1653
1654
1655.. currentmodule:: logging
1656
Benjamin Peterson8719ad52009-09-11 22:24:02 +00001657
Georg Brandl116aa622007-08-15 14:28:22 +00001658.. _network-logging:
1659
1660Sending and receiving logging events across a network
1661-----------------------------------------------------
1662
1663Let's say you want to send logging events across a network, and handle them at
1664the receiving end. A simple way of doing this is attaching a
1665:class:`SocketHandler` instance to the root logger at the sending end::
1666
1667 import logging, logging.handlers
1668
1669 rootLogger = logging.getLogger('')
1670 rootLogger.setLevel(logging.DEBUG)
1671 socketHandler = logging.handlers.SocketHandler('localhost',
1672 logging.handlers.DEFAULT_TCP_LOGGING_PORT)
1673 # don't bother with a formatter, since a socket handler sends the event as
1674 # an unformatted pickle
1675 rootLogger.addHandler(socketHandler)
1676
1677 # Now, we can log to the root logger, or any other logger. First the root...
1678 logging.info('Jackdaws love my big sphinx of quartz.')
1679
1680 # Now, define a couple of other loggers which might represent areas in your
1681 # application:
1682
1683 logger1 = logging.getLogger('myapp.area1')
1684 logger2 = logging.getLogger('myapp.area2')
1685
1686 logger1.debug('Quick zephyrs blow, vexing daft Jim.')
1687 logger1.info('How quickly daft jumping zebras vex.')
1688 logger2.warning('Jail zesty vixen who grabbed pay from quack.')
1689 logger2.error('The five boxing wizards jump quickly.')
1690
Alexandre Vassalottice261952008-05-12 02:31:37 +00001691At the receiving end, you can set up a receiver using the :mod:`socketserver`
Georg Brandl116aa622007-08-15 14:28:22 +00001692module. Here is a basic working example::
1693
Georg Brandla35f4b92009-05-31 16:41:59 +00001694 import pickle
Georg Brandl116aa622007-08-15 14:28:22 +00001695 import logging
1696 import logging.handlers
Alexandre Vassalottice261952008-05-12 02:31:37 +00001697 import socketserver
Georg Brandl116aa622007-08-15 14:28:22 +00001698 import struct
1699
1700
Alexandre Vassalottice261952008-05-12 02:31:37 +00001701 class LogRecordStreamHandler(socketserver.StreamRequestHandler):
Georg Brandl116aa622007-08-15 14:28:22 +00001702 """Handler for a streaming logging request.
1703
1704 This basically logs the record using whatever logging policy is
1705 configured locally.
1706 """
1707
1708 def handle(self):
1709 """
1710 Handle multiple requests - each expected to be a 4-byte length,
1711 followed by the LogRecord in pickle format. Logs the record
1712 according to whatever policy is configured locally.
1713 """
Collin Winter46334482007-09-10 00:49:57 +00001714 while True:
Georg Brandl116aa622007-08-15 14:28:22 +00001715 chunk = self.connection.recv(4)
1716 if len(chunk) < 4:
1717 break
1718 slen = struct.unpack(">L", chunk)[0]
1719 chunk = self.connection.recv(slen)
1720 while len(chunk) < slen:
1721 chunk = chunk + self.connection.recv(slen - len(chunk))
1722 obj = self.unPickle(chunk)
1723 record = logging.makeLogRecord(obj)
1724 self.handleLogRecord(record)
1725
1726 def unPickle(self, data):
Georg Brandla35f4b92009-05-31 16:41:59 +00001727 return pickle.loads(data)
Georg Brandl116aa622007-08-15 14:28:22 +00001728
1729 def handleLogRecord(self, record):
1730 # if a name is specified, we use the named logger rather than the one
1731 # implied by the record.
1732 if self.server.logname is not None:
1733 name = self.server.logname
1734 else:
1735 name = record.name
1736 logger = logging.getLogger(name)
1737 # N.B. EVERY record gets logged. This is because Logger.handle
1738 # is normally called AFTER logger-level filtering. If you want
1739 # to do filtering, do it at the client end to save wasting
1740 # cycles and network bandwidth!
1741 logger.handle(record)
1742
Alexandre Vassalottice261952008-05-12 02:31:37 +00001743 class LogRecordSocketReceiver(socketserver.ThreadingTCPServer):
Georg Brandl116aa622007-08-15 14:28:22 +00001744 """simple TCP socket-based logging receiver suitable for testing.
1745 """
1746
1747 allow_reuse_address = 1
1748
1749 def __init__(self, host='localhost',
1750 port=logging.handlers.DEFAULT_TCP_LOGGING_PORT,
1751 handler=LogRecordStreamHandler):
Alexandre Vassalottice261952008-05-12 02:31:37 +00001752 socketserver.ThreadingTCPServer.__init__(self, (host, port), handler)
Georg Brandl116aa622007-08-15 14:28:22 +00001753 self.abort = 0
1754 self.timeout = 1
1755 self.logname = None
1756
1757 def serve_until_stopped(self):
1758 import select
1759 abort = 0
1760 while not abort:
1761 rd, wr, ex = select.select([self.socket.fileno()],
1762 [], [],
1763 self.timeout)
1764 if rd:
1765 self.handle_request()
1766 abort = self.abort
1767
1768 def main():
1769 logging.basicConfig(
1770 format="%(relativeCreated)5d %(name)-15s %(levelname)-8s %(message)s")
1771 tcpserver = LogRecordSocketReceiver()
Georg Brandl6911e3c2007-09-04 07:15:32 +00001772 print("About to start TCP server...")
Georg Brandl116aa622007-08-15 14:28:22 +00001773 tcpserver.serve_until_stopped()
1774
1775 if __name__ == "__main__":
1776 main()
1777
1778First run the server, and then the client. On the client side, nothing is
1779printed on the console; on the server side, you should see something like::
1780
1781 About to start TCP server...
1782 59 root INFO Jackdaws love my big sphinx of quartz.
1783 59 myapp.area1 DEBUG Quick zephyrs blow, vexing daft Jim.
1784 69 myapp.area1 INFO How quickly daft jumping zebras vex.
1785 69 myapp.area2 WARNING Jail zesty vixen who grabbed pay from quack.
1786 69 myapp.area2 ERROR The five boxing wizards jump quickly.
1787
Vinay Sajipc15dfd62010-07-06 15:08:55 +00001788Note that there are some security issues with pickle in some scenarios. If
1789these affect you, you can use an alternative serialization scheme by overriding
1790the :meth:`makePickle` method and implementing your alternative there, as
1791well as adapting the above script to use your alternative serialization.
1792
Vinay Sajip4039aff2010-09-11 10:25:28 +00001793.. _arbitrary-object-messages:
1794
Benjamin Peterson4ac9ce42009-10-04 14:49:41 +00001795Using arbitrary objects as messages
1796-----------------------------------
1797
1798In the preceding sections and examples, it has been assumed that the message
1799passed when logging the event is a string. However, this is not the only
1800possibility. You can pass an arbitrary object as a message, and its
1801:meth:`__str__` method will be called when the logging system needs to convert
1802it to a string representation. In fact, if you want to, you can avoid
1803computing a string representation altogether - for example, the
1804:class:`SocketHandler` emits an event by pickling it and sending it over the
1805wire.
1806
1807Optimization
1808------------
1809
1810Formatting of message arguments is deferred until it cannot be avoided.
1811However, computing the arguments passed to the logging method can also be
1812expensive, and you may want to avoid doing it if the logger will just throw
1813away your event. To decide what to do, you can call the :meth:`isEnabledFor`
1814method which takes a level argument and returns true if the event would be
1815created by the Logger for that level of call. You can write code like this::
1816
1817 if logger.isEnabledFor(logging.DEBUG):
1818 logger.debug("Message with %s, %s", expensive_func1(),
1819 expensive_func2())
1820
1821so that if the logger's threshold is set above ``DEBUG``, the calls to
1822:func:`expensive_func1` and :func:`expensive_func2` are never made.
1823
1824There are other optimizations which can be made for specific applications which
1825need more precise control over what logging information is collected. Here's a
1826list of things you can do to avoid processing during logging which you don't
1827need:
1828
1829+-----------------------------------------------+----------------------------------------+
1830| What you don't want to collect | How to avoid collecting it |
1831+===============================================+========================================+
1832| Information about where calls were made from. | Set ``logging._srcfile`` to ``None``. |
1833+-----------------------------------------------+----------------------------------------+
1834| Threading information. | Set ``logging.logThreads`` to ``0``. |
1835+-----------------------------------------------+----------------------------------------+
1836| Process information. | Set ``logging.logProcesses`` to ``0``. |
1837+-----------------------------------------------+----------------------------------------+
1838
1839Also note that the core logging module only includes the basic handlers. If
1840you don't import :mod:`logging.handlers` and :mod:`logging.config`, they won't
1841take up any memory.
1842
1843.. _handler:
Georg Brandl116aa622007-08-15 14:28:22 +00001844
1845Handler Objects
1846---------------
1847
1848Handlers have the following attributes and methods. Note that :class:`Handler`
1849is never instantiated directly; this class acts as a base for more useful
1850subclasses. However, the :meth:`__init__` method in subclasses needs to call
1851:meth:`Handler.__init__`.
1852
1853
1854.. method:: Handler.__init__(level=NOTSET)
1855
1856 Initializes the :class:`Handler` instance by setting its level, setting the list
1857 of filters to the empty list and creating a lock (using :meth:`createLock`) for
1858 serializing access to an I/O mechanism.
1859
1860
1861.. method:: Handler.createLock()
1862
1863 Initializes a thread lock which can be used to serialize access to underlying
1864 I/O functionality which may not be threadsafe.
1865
1866
1867.. method:: Handler.acquire()
1868
1869 Acquires the thread lock created with :meth:`createLock`.
1870
1871
1872.. method:: Handler.release()
1873
1874 Releases the thread lock acquired with :meth:`acquire`.
1875
1876
1877.. method:: Handler.setLevel(lvl)
1878
1879 Sets the threshold for this handler to *lvl*. Logging messages which are less
1880 severe than *lvl* will be ignored. When a handler is created, the level is set
1881 to :const:`NOTSET` (which causes all messages to be processed).
1882
1883
1884.. method:: Handler.setFormatter(form)
1885
1886 Sets the :class:`Formatter` for this handler to *form*.
1887
1888
1889.. method:: Handler.addFilter(filt)
1890
1891 Adds the specified filter *filt* to this handler.
1892
1893
1894.. method:: Handler.removeFilter(filt)
1895
1896 Removes the specified filter *filt* from this handler.
1897
1898
1899.. method:: Handler.filter(record)
1900
1901 Applies this handler's filters to the record and returns a true value if the
1902 record is to be processed.
1903
1904
1905.. method:: Handler.flush()
1906
1907 Ensure all logging output has been flushed. This version does nothing and is
1908 intended to be implemented by subclasses.
1909
1910
1911.. method:: Handler.close()
1912
Benjamin Peterson3e4f0552008-09-02 00:31:15 +00001913 Tidy up any resources used by the handler. This version does no output but
1914 removes the handler from an internal list of handlers which is closed when
1915 :func:`shutdown` is called. Subclasses should ensure that this gets called
1916 from overridden :meth:`close` methods.
Georg Brandl116aa622007-08-15 14:28:22 +00001917
1918
1919.. method:: Handler.handle(record)
1920
1921 Conditionally emits the specified logging record, depending on filters which may
1922 have been added to the handler. Wraps the actual emission of the record with
1923 acquisition/release of the I/O thread lock.
1924
1925
1926.. method:: Handler.handleError(record)
1927
1928 This method should be called from handlers when an exception is encountered
1929 during an :meth:`emit` call. By default it does nothing, which means that
1930 exceptions get silently ignored. This is what is mostly wanted for a logging
1931 system - most users will not care about errors in the logging system, they are
1932 more interested in application errors. You could, however, replace this with a
1933 custom handler if you wish. The specified record is the one which was being
1934 processed when the exception occurred.
1935
1936
1937.. method:: Handler.format(record)
1938
1939 Do formatting for a record - if a formatter is set, use it. Otherwise, use the
1940 default formatter for the module.
1941
1942
1943.. method:: Handler.emit(record)
1944
1945 Do whatever it takes to actually log the specified logging record. This version
1946 is intended to be implemented by subclasses and so raises a
1947 :exc:`NotImplementedError`.
1948
1949
Vinay Sajipd31f3632010-06-29 15:31:15 +00001950.. _stream-handler:
1951
Georg Brandl116aa622007-08-15 14:28:22 +00001952StreamHandler
1953^^^^^^^^^^^^^
1954
1955The :class:`StreamHandler` class, located in the core :mod:`logging` package,
1956sends logging output to streams such as *sys.stdout*, *sys.stderr* or any
1957file-like object (or, more precisely, any object which supports :meth:`write`
1958and :meth:`flush` methods).
1959
1960
Benjamin Peterson1baf4652009-12-31 03:11:23 +00001961.. currentmodule:: logging
1962
Benjamin Peterson4ac9ce42009-10-04 14:49:41 +00001963.. class:: StreamHandler(stream=None)
Georg Brandl116aa622007-08-15 14:28:22 +00001964
Benjamin Peterson4ac9ce42009-10-04 14:49:41 +00001965 Returns a new instance of the :class:`StreamHandler` class. If *stream* is
Georg Brandl116aa622007-08-15 14:28:22 +00001966 specified, the instance will use it for logging output; otherwise, *sys.stderr*
1967 will be used.
1968
1969
Benjamin Petersone41251e2008-04-25 01:59:09 +00001970 .. method:: emit(record)
Georg Brandl116aa622007-08-15 14:28:22 +00001971
Benjamin Petersone41251e2008-04-25 01:59:09 +00001972 If a formatter is specified, it is used to format the record. The record
1973 is then written to the stream with a trailing newline. If exception
1974 information is present, it is formatted using
1975 :func:`traceback.print_exception` and appended to the stream.
Georg Brandl116aa622007-08-15 14:28:22 +00001976
1977
Benjamin Petersone41251e2008-04-25 01:59:09 +00001978 .. method:: flush()
Georg Brandl116aa622007-08-15 14:28:22 +00001979
Benjamin Petersone41251e2008-04-25 01:59:09 +00001980 Flushes the stream by calling its :meth:`flush` method. Note that the
1981 :meth:`close` method is inherited from :class:`Handler` and so does
Benjamin Peterson3e4f0552008-09-02 00:31:15 +00001982 no output, so an explicit :meth:`flush` call may be needed at times.
Georg Brandl116aa622007-08-15 14:28:22 +00001983
1984
Vinay Sajipd31f3632010-06-29 15:31:15 +00001985.. _file-handler:
1986
Georg Brandl116aa622007-08-15 14:28:22 +00001987FileHandler
1988^^^^^^^^^^^
1989
1990The :class:`FileHandler` class, located in the core :mod:`logging` package,
1991sends logging output to a disk file. It inherits the output functionality from
1992:class:`StreamHandler`.
1993
1994
Vinay Sajipd31f3632010-06-29 15:31:15 +00001995.. class:: FileHandler(filename, mode='a', encoding=None, delay=False)
Georg Brandl116aa622007-08-15 14:28:22 +00001996
1997 Returns a new instance of the :class:`FileHandler` class. The specified file is
1998 opened and used as the stream for logging. If *mode* is not specified,
1999 :const:`'a'` is used. If *encoding* is not *None*, it is used to open the file
Christian Heimese7a15bb2008-01-24 16:21:45 +00002000 with that encoding. If *delay* is true, then file opening is deferred until the
2001 first call to :meth:`emit`. By default, the file grows indefinitely.
Georg Brandl116aa622007-08-15 14:28:22 +00002002
2003
Benjamin Petersone41251e2008-04-25 01:59:09 +00002004 .. method:: close()
Georg Brandl116aa622007-08-15 14:28:22 +00002005
Benjamin Petersone41251e2008-04-25 01:59:09 +00002006 Closes the file.
Georg Brandl116aa622007-08-15 14:28:22 +00002007
2008
Benjamin Petersone41251e2008-04-25 01:59:09 +00002009 .. method:: emit(record)
Georg Brandl116aa622007-08-15 14:28:22 +00002010
Benjamin Petersone41251e2008-04-25 01:59:09 +00002011 Outputs the record to the file.
Georg Brandl116aa622007-08-15 14:28:22 +00002012
Vinay Sajipd31f3632010-06-29 15:31:15 +00002013.. _null-handler:
Georg Brandl116aa622007-08-15 14:28:22 +00002014
Vinay Sajipaa672eb2009-01-02 18:53:45 +00002015NullHandler
2016^^^^^^^^^^^
2017
2018.. versionadded:: 3.1
2019
2020The :class:`NullHandler` class, located in the core :mod:`logging` package,
2021does not do any formatting or output. It is essentially a "no-op" handler
2022for use by library developers.
2023
2024
2025.. class:: NullHandler()
2026
2027 Returns a new instance of the :class:`NullHandler` class.
2028
2029
2030 .. method:: emit(record)
2031
2032 This method does nothing.
2033
Vinay Sajip26a2d5e2009-01-10 13:37:26 +00002034See :ref:`library-config` for more information on how to use
2035:class:`NullHandler`.
Benjamin Peterson960cf0f2009-01-09 04:11:44 +00002036
Vinay Sajipd31f3632010-06-29 15:31:15 +00002037.. _watched-file-handler:
2038
Georg Brandl116aa622007-08-15 14:28:22 +00002039WatchedFileHandler
2040^^^^^^^^^^^^^^^^^^
2041
Benjamin Peterson058e31e2009-01-16 03:54:08 +00002042.. currentmodule:: logging.handlers
Vinay Sajipaa672eb2009-01-02 18:53:45 +00002043
Georg Brandl116aa622007-08-15 14:28:22 +00002044The :class:`WatchedFileHandler` class, located in the :mod:`logging.handlers`
2045module, is a :class:`FileHandler` which watches the file it is logging to. If
2046the file changes, it is closed and reopened using the file name.
2047
2048A file change can happen because of usage of programs such as *newsyslog* and
2049*logrotate* which perform log file rotation. This handler, intended for use
2050under Unix/Linux, watches the file to see if it has changed since the last emit.
2051(A file is deemed to have changed if its device or inode have changed.) If the
2052file has changed, the old file stream is closed, and the file opened to get a
2053new stream.
2054
2055This handler is not appropriate for use under Windows, because under Windows
2056open log files cannot be moved or renamed - logging opens the files with
2057exclusive locks - and so there is no need for such a handler. Furthermore,
2058*ST_INO* is not supported under Windows; :func:`stat` always returns zero for
2059this value.
2060
2061
Christian Heimese7a15bb2008-01-24 16:21:45 +00002062.. class:: WatchedFileHandler(filename[,mode[, encoding[, delay]]])
Georg Brandl116aa622007-08-15 14:28:22 +00002063
2064 Returns a new instance of the :class:`WatchedFileHandler` class. The specified
2065 file is opened and used as the stream for logging. If *mode* is not specified,
2066 :const:`'a'` is used. If *encoding* is not *None*, it is used to open the file
Christian Heimese7a15bb2008-01-24 16:21:45 +00002067 with that encoding. If *delay* is true, then file opening is deferred until the
2068 first call to :meth:`emit`. By default, the file grows indefinitely.
Georg Brandl116aa622007-08-15 14:28:22 +00002069
2070
Benjamin Petersone41251e2008-04-25 01:59:09 +00002071 .. method:: emit(record)
Georg Brandl116aa622007-08-15 14:28:22 +00002072
Benjamin Petersone41251e2008-04-25 01:59:09 +00002073 Outputs the record to the file, but first checks to see if the file has
2074 changed. If it has, the existing stream is flushed and closed and the
2075 file opened again, before outputting the record to the file.
Georg Brandl116aa622007-08-15 14:28:22 +00002076
Vinay Sajipd31f3632010-06-29 15:31:15 +00002077.. _rotating-file-handler:
Georg Brandl116aa622007-08-15 14:28:22 +00002078
2079RotatingFileHandler
2080^^^^^^^^^^^^^^^^^^^
2081
2082The :class:`RotatingFileHandler` class, located in the :mod:`logging.handlers`
2083module, supports rotation of disk log files.
2084
2085
Georg Brandlcd7f32b2009-06-08 09:13:45 +00002086.. class:: RotatingFileHandler(filename, mode='a', maxBytes=0, backupCount=0, encoding=None, delay=0)
Georg Brandl116aa622007-08-15 14:28:22 +00002087
2088 Returns a new instance of the :class:`RotatingFileHandler` class. The specified
2089 file is opened and used as the stream for logging. If *mode* is not specified,
Christian Heimese7a15bb2008-01-24 16:21:45 +00002090 ``'a'`` is used. If *encoding* is not *None*, it is used to open the file
2091 with that encoding. If *delay* is true, then file opening is deferred until the
2092 first call to :meth:`emit`. By default, the file grows indefinitely.
Georg Brandl116aa622007-08-15 14:28:22 +00002093
2094 You can use the *maxBytes* and *backupCount* values to allow the file to
2095 :dfn:`rollover` at a predetermined size. When the size is about to be exceeded,
2096 the file is closed and a new file is silently opened for output. Rollover occurs
2097 whenever the current log file is nearly *maxBytes* in length; if *maxBytes* is
2098 zero, rollover never occurs. If *backupCount* is non-zero, the system will save
2099 old log files by appending the extensions ".1", ".2" etc., to the filename. For
2100 example, with a *backupCount* of 5 and a base file name of :file:`app.log`, you
2101 would get :file:`app.log`, :file:`app.log.1`, :file:`app.log.2`, up to
2102 :file:`app.log.5`. The file being written to is always :file:`app.log`. When
2103 this file is filled, it is closed and renamed to :file:`app.log.1`, and if files
2104 :file:`app.log.1`, :file:`app.log.2`, etc. exist, then they are renamed to
2105 :file:`app.log.2`, :file:`app.log.3` etc. respectively.
2106
2107
Benjamin Petersone41251e2008-04-25 01:59:09 +00002108 .. method:: doRollover()
Georg Brandl116aa622007-08-15 14:28:22 +00002109
Benjamin Petersone41251e2008-04-25 01:59:09 +00002110 Does a rollover, as described above.
Georg Brandl116aa622007-08-15 14:28:22 +00002111
2112
Benjamin Petersone41251e2008-04-25 01:59:09 +00002113 .. method:: emit(record)
Georg Brandl116aa622007-08-15 14:28:22 +00002114
Benjamin Petersone41251e2008-04-25 01:59:09 +00002115 Outputs the record to the file, catering for rollover as described
2116 previously.
Georg Brandl116aa622007-08-15 14:28:22 +00002117
Vinay Sajipd31f3632010-06-29 15:31:15 +00002118.. _timed-rotating-file-handler:
Georg Brandl116aa622007-08-15 14:28:22 +00002119
2120TimedRotatingFileHandler
2121^^^^^^^^^^^^^^^^^^^^^^^^
2122
2123The :class:`TimedRotatingFileHandler` class, located in the
2124:mod:`logging.handlers` module, supports rotation of disk log files at certain
2125timed intervals.
2126
2127
Vinay Sajipd31f3632010-06-29 15:31:15 +00002128.. class:: TimedRotatingFileHandler(filename, when='h', interval=1, backupCount=0, encoding=None, delay=False, utc=False)
Georg Brandl116aa622007-08-15 14:28:22 +00002129
2130 Returns a new instance of the :class:`TimedRotatingFileHandler` class. The
2131 specified file is opened and used as the stream for logging. On rotating it also
2132 sets the filename suffix. Rotating happens based on the product of *when* and
2133 *interval*.
2134
2135 You can use the *when* to specify the type of *interval*. The list of possible
Georg Brandl0c77a822008-06-10 16:37:50 +00002136 values is below. Note that they are not case sensitive.
Georg Brandl116aa622007-08-15 14:28:22 +00002137
Christian Heimesb558a2e2008-03-02 22:46:37 +00002138 +----------------+-----------------------+
2139 | Value | Type of interval |
2140 +================+=======================+
2141 | ``'S'`` | Seconds |
2142 +----------------+-----------------------+
2143 | ``'M'`` | Minutes |
2144 +----------------+-----------------------+
2145 | ``'H'`` | Hours |
2146 +----------------+-----------------------+
2147 | ``'D'`` | Days |
2148 +----------------+-----------------------+
2149 | ``'W'`` | Week day (0=Monday) |
2150 +----------------+-----------------------+
2151 | ``'midnight'`` | Roll over at midnight |
2152 +----------------+-----------------------+
Georg Brandl116aa622007-08-15 14:28:22 +00002153
Christian Heimesb558a2e2008-03-02 22:46:37 +00002154 The system will save old log files by appending extensions to the filename.
2155 The extensions are date-and-time based, using the strftime format
Benjamin Petersonad9d48d2008-04-02 21:49:44 +00002156 ``%Y-%m-%d_%H-%M-%S`` or a leading portion thereof, depending on the
Georg Brandl3dbca812008-07-23 16:10:53 +00002157 rollover interval.
Benjamin Peterson9451a1c2010-03-13 22:30:34 +00002158
2159 When computing the next rollover time for the first time (when the handler
2160 is created), the last modification time of an existing log file, or else
2161 the current time, is used to compute when the next rotation will occur.
2162
Georg Brandl0c77a822008-06-10 16:37:50 +00002163 If the *utc* argument is true, times in UTC will be used; otherwise
2164 local time is used.
2165
2166 If *backupCount* is nonzero, at most *backupCount* files
Benjamin Petersonad9d48d2008-04-02 21:49:44 +00002167 will be kept, and if more would be created when rollover occurs, the oldest
2168 one is deleted. The deletion logic uses the interval to determine which
2169 files to delete, so changing the interval may leave old files lying around.
Georg Brandl116aa622007-08-15 14:28:22 +00002170
Vinay Sajipd31f3632010-06-29 15:31:15 +00002171 If *delay* is true, then file opening is deferred until the first call to
2172 :meth:`emit`.
2173
Georg Brandl116aa622007-08-15 14:28:22 +00002174
Benjamin Petersone41251e2008-04-25 01:59:09 +00002175 .. method:: doRollover()
Georg Brandl116aa622007-08-15 14:28:22 +00002176
Benjamin Petersone41251e2008-04-25 01:59:09 +00002177 Does a rollover, as described above.
Georg Brandl116aa622007-08-15 14:28:22 +00002178
2179
Benjamin Petersone41251e2008-04-25 01:59:09 +00002180 .. method:: emit(record)
Georg Brandl116aa622007-08-15 14:28:22 +00002181
Benjamin Petersone41251e2008-04-25 01:59:09 +00002182 Outputs the record to the file, catering for rollover as described above.
Georg Brandl116aa622007-08-15 14:28:22 +00002183
2184
Vinay Sajipd31f3632010-06-29 15:31:15 +00002185.. _socket-handler:
2186
Georg Brandl116aa622007-08-15 14:28:22 +00002187SocketHandler
2188^^^^^^^^^^^^^
2189
2190The :class:`SocketHandler` class, located in the :mod:`logging.handlers` module,
2191sends logging output to a network socket. The base class uses a TCP socket.
2192
2193
2194.. class:: SocketHandler(host, port)
2195
2196 Returns a new instance of the :class:`SocketHandler` class intended to
2197 communicate with a remote machine whose address is given by *host* and *port*.
2198
2199
Benjamin Petersone41251e2008-04-25 01:59:09 +00002200 .. method:: close()
Georg Brandl116aa622007-08-15 14:28:22 +00002201
Benjamin Petersone41251e2008-04-25 01:59:09 +00002202 Closes the socket.
Georg Brandl116aa622007-08-15 14:28:22 +00002203
2204
Benjamin Petersone41251e2008-04-25 01:59:09 +00002205 .. method:: emit()
Georg Brandl116aa622007-08-15 14:28:22 +00002206
Benjamin Petersone41251e2008-04-25 01:59:09 +00002207 Pickles the record's attribute dictionary and writes it to the socket in
2208 binary format. If there is an error with the socket, silently drops the
2209 packet. If the connection was previously lost, re-establishes the
2210 connection. To unpickle the record at the receiving end into a
2211 :class:`LogRecord`, use the :func:`makeLogRecord` function.
Georg Brandl116aa622007-08-15 14:28:22 +00002212
2213
Benjamin Petersone41251e2008-04-25 01:59:09 +00002214 .. method:: handleError()
Georg Brandl116aa622007-08-15 14:28:22 +00002215
Benjamin Petersone41251e2008-04-25 01:59:09 +00002216 Handles an error which has occurred during :meth:`emit`. The most likely
2217 cause is a lost connection. Closes the socket so that we can retry on the
2218 next event.
Georg Brandl116aa622007-08-15 14:28:22 +00002219
2220
Benjamin Petersone41251e2008-04-25 01:59:09 +00002221 .. method:: makeSocket()
Georg Brandl116aa622007-08-15 14:28:22 +00002222
Benjamin Petersone41251e2008-04-25 01:59:09 +00002223 This is a factory method which allows subclasses to define the precise
2224 type of socket they want. The default implementation creates a TCP socket
2225 (:const:`socket.SOCK_STREAM`).
Georg Brandl116aa622007-08-15 14:28:22 +00002226
2227
Benjamin Petersone41251e2008-04-25 01:59:09 +00002228 .. method:: makePickle(record)
Georg Brandl116aa622007-08-15 14:28:22 +00002229
Benjamin Petersone41251e2008-04-25 01:59:09 +00002230 Pickles the record's attribute dictionary in binary format with a length
2231 prefix, and returns it ready for transmission across the socket.
Georg Brandl116aa622007-08-15 14:28:22 +00002232
Vinay Sajipd31f3632010-06-29 15:31:15 +00002233 Note that pickles aren't completely secure. If you are concerned about
2234 security, you may want to override this method to implement a more secure
2235 mechanism. For example, you can sign pickles using HMAC and then verify
2236 them on the receiving end, or alternatively you can disable unpickling of
2237 global objects on the receiving end.
Georg Brandl116aa622007-08-15 14:28:22 +00002238
Benjamin Petersone41251e2008-04-25 01:59:09 +00002239 .. method:: send(packet)
Georg Brandl116aa622007-08-15 14:28:22 +00002240
Benjamin Petersone41251e2008-04-25 01:59:09 +00002241 Send a pickled string *packet* to the socket. This function allows for
2242 partial sends which can happen when the network is busy.
Georg Brandl116aa622007-08-15 14:28:22 +00002243
2244
Vinay Sajipd31f3632010-06-29 15:31:15 +00002245.. _datagram-handler:
2246
Georg Brandl116aa622007-08-15 14:28:22 +00002247DatagramHandler
2248^^^^^^^^^^^^^^^
2249
2250The :class:`DatagramHandler` class, located in the :mod:`logging.handlers`
2251module, inherits from :class:`SocketHandler` to support sending logging messages
2252over UDP sockets.
2253
2254
2255.. class:: DatagramHandler(host, port)
2256
2257 Returns a new instance of the :class:`DatagramHandler` class intended to
2258 communicate with a remote machine whose address is given by *host* and *port*.
2259
2260
Benjamin Petersone41251e2008-04-25 01:59:09 +00002261 .. method:: emit()
Georg Brandl116aa622007-08-15 14:28:22 +00002262
Benjamin Petersone41251e2008-04-25 01:59:09 +00002263 Pickles the record's attribute dictionary and writes it to the socket in
2264 binary format. If there is an error with the socket, silently drops the
2265 packet. To unpickle the record at the receiving end into a
2266 :class:`LogRecord`, use the :func:`makeLogRecord` function.
Georg Brandl116aa622007-08-15 14:28:22 +00002267
2268
Benjamin Petersone41251e2008-04-25 01:59:09 +00002269 .. method:: makeSocket()
Georg Brandl116aa622007-08-15 14:28:22 +00002270
Benjamin Petersone41251e2008-04-25 01:59:09 +00002271 The factory method of :class:`SocketHandler` is here overridden to create
2272 a UDP socket (:const:`socket.SOCK_DGRAM`).
Georg Brandl116aa622007-08-15 14:28:22 +00002273
2274
Benjamin Petersone41251e2008-04-25 01:59:09 +00002275 .. method:: send(s)
Georg Brandl116aa622007-08-15 14:28:22 +00002276
Benjamin Petersone41251e2008-04-25 01:59:09 +00002277 Send a pickled string to a socket.
Georg Brandl116aa622007-08-15 14:28:22 +00002278
2279
Vinay Sajipd31f3632010-06-29 15:31:15 +00002280.. _syslog-handler:
2281
Georg Brandl116aa622007-08-15 14:28:22 +00002282SysLogHandler
2283^^^^^^^^^^^^^
2284
2285The :class:`SysLogHandler` class, located in the :mod:`logging.handlers` module,
2286supports sending logging messages to a remote or local Unix syslog.
2287
2288
Vinay Sajipcbabd7e2009-10-10 20:32:36 +00002289.. class:: SysLogHandler(address=('localhost', SYSLOG_UDP_PORT), facility=LOG_USER, socktype=socket.SOCK_DGRAM)
Georg Brandl116aa622007-08-15 14:28:22 +00002290
2291 Returns a new instance of the :class:`SysLogHandler` class intended to
2292 communicate with a remote Unix machine whose address is given by *address* in
2293 the form of a ``(host, port)`` tuple. If *address* is not specified,
Vinay Sajipcbabd7e2009-10-10 20:32:36 +00002294 ``('localhost', 514)`` is used. The address is used to open a socket. An
Georg Brandl116aa622007-08-15 14:28:22 +00002295 alternative to providing a ``(host, port)`` tuple is providing an address as a
2296 string, for example "/dev/log". In this case, a Unix domain socket is used to
2297 send the message to the syslog. If *facility* is not specified,
Vinay Sajipcbabd7e2009-10-10 20:32:36 +00002298 :const:`LOG_USER` is used. The type of socket opened depends on the
2299 *socktype* argument, which defaults to :const:`socket.SOCK_DGRAM` and thus
2300 opens a UDP socket. To open a TCP socket (for use with the newer syslog
2301 daemons such as rsyslog), specify a value of :const:`socket.SOCK_STREAM`.
2302
2303 .. versionchanged:: 3.2
2304 *socktype* was added.
Georg Brandl116aa622007-08-15 14:28:22 +00002305
2306
Benjamin Petersone41251e2008-04-25 01:59:09 +00002307 .. method:: close()
Georg Brandl116aa622007-08-15 14:28:22 +00002308
Benjamin Petersone41251e2008-04-25 01:59:09 +00002309 Closes the socket to the remote host.
Georg Brandl116aa622007-08-15 14:28:22 +00002310
2311
Benjamin Petersone41251e2008-04-25 01:59:09 +00002312 .. method:: emit(record)
Georg Brandl116aa622007-08-15 14:28:22 +00002313
Benjamin Petersone41251e2008-04-25 01:59:09 +00002314 The record is formatted, and then sent to the syslog server. If exception
2315 information is present, it is *not* sent to the server.
Georg Brandl116aa622007-08-15 14:28:22 +00002316
2317
Benjamin Petersone41251e2008-04-25 01:59:09 +00002318 .. method:: encodePriority(facility, priority)
Georg Brandl116aa622007-08-15 14:28:22 +00002319
Benjamin Petersone41251e2008-04-25 01:59:09 +00002320 Encodes the facility and priority into an integer. You can pass in strings
2321 or integers - if strings are passed, internal mapping dictionaries are
2322 used to convert them to integers.
Georg Brandl116aa622007-08-15 14:28:22 +00002323
Benjamin Peterson22005fc2010-04-11 16:25:06 +00002324 The symbolic ``LOG_`` values are defined in :class:`SysLogHandler` and
2325 mirror the values defined in the ``sys/syslog.h`` header file.
Benjamin Peterson08bf91c2010-04-11 16:12:57 +00002326
Georg Brandl88d7dbd2010-04-18 09:50:07 +00002327 **Priorities**
2328
Benjamin Peterson08bf91c2010-04-11 16:12:57 +00002329 +--------------------------+---------------+
2330 | Name (string) | Symbolic value|
2331 +==========================+===============+
2332 | ``alert`` | LOG_ALERT |
2333 +--------------------------+---------------+
2334 | ``crit`` or ``critical`` | LOG_CRIT |
2335 +--------------------------+---------------+
2336 | ``debug`` | LOG_DEBUG |
2337 +--------------------------+---------------+
2338 | ``emerg`` or ``panic`` | LOG_EMERG |
2339 +--------------------------+---------------+
2340 | ``err`` or ``error`` | LOG_ERR |
2341 +--------------------------+---------------+
2342 | ``info`` | LOG_INFO |
2343 +--------------------------+---------------+
2344 | ``notice`` | LOG_NOTICE |
2345 +--------------------------+---------------+
2346 | ``warn`` or ``warning`` | LOG_WARNING |
2347 +--------------------------+---------------+
2348
Georg Brandl88d7dbd2010-04-18 09:50:07 +00002349 **Facilities**
2350
Benjamin Peterson08bf91c2010-04-11 16:12:57 +00002351 +---------------+---------------+
2352 | Name (string) | Symbolic value|
2353 +===============+===============+
2354 | ``auth`` | LOG_AUTH |
2355 +---------------+---------------+
2356 | ``authpriv`` | LOG_AUTHPRIV |
2357 +---------------+---------------+
2358 | ``cron`` | LOG_CRON |
2359 +---------------+---------------+
2360 | ``daemon`` | LOG_DAEMON |
2361 +---------------+---------------+
2362 | ``ftp`` | LOG_FTP |
2363 +---------------+---------------+
2364 | ``kern`` | LOG_KERN |
2365 +---------------+---------------+
2366 | ``lpr`` | LOG_LPR |
2367 +---------------+---------------+
2368 | ``mail`` | LOG_MAIL |
2369 +---------------+---------------+
2370 | ``news`` | LOG_NEWS |
2371 +---------------+---------------+
2372 | ``syslog`` | LOG_SYSLOG |
2373 +---------------+---------------+
2374 | ``user`` | LOG_USER |
2375 +---------------+---------------+
2376 | ``uucp`` | LOG_UUCP |
2377 +---------------+---------------+
2378 | ``local0`` | LOG_LOCAL0 |
2379 +---------------+---------------+
2380 | ``local1`` | LOG_LOCAL1 |
2381 +---------------+---------------+
2382 | ``local2`` | LOG_LOCAL2 |
2383 +---------------+---------------+
2384 | ``local3`` | LOG_LOCAL3 |
2385 +---------------+---------------+
2386 | ``local4`` | LOG_LOCAL4 |
2387 +---------------+---------------+
2388 | ``local5`` | LOG_LOCAL5 |
2389 +---------------+---------------+
2390 | ``local6`` | LOG_LOCAL6 |
2391 +---------------+---------------+
2392 | ``local7`` | LOG_LOCAL7 |
2393 +---------------+---------------+
2394
2395 .. method:: mapPriority(levelname)
2396
2397 Maps a logging level name to a syslog priority name.
2398 You may need to override this if you are using custom levels, or
2399 if the default algorithm is not suitable for your needs. The
2400 default algorithm maps ``DEBUG``, ``INFO``, ``WARNING``, ``ERROR`` and
2401 ``CRITICAL`` to the equivalent syslog names, and all other level
2402 names to "warning".
2403
2404.. _nt-eventlog-handler:
Georg Brandl116aa622007-08-15 14:28:22 +00002405
2406NTEventLogHandler
2407^^^^^^^^^^^^^^^^^
2408
2409The :class:`NTEventLogHandler` class, located in the :mod:`logging.handlers`
2410module, supports sending logging messages to a local Windows NT, Windows 2000 or
2411Windows XP event log. Before you can use it, you need Mark Hammond's Win32
2412extensions for Python installed.
2413
2414
Georg Brandlcd7f32b2009-06-08 09:13:45 +00002415.. class:: NTEventLogHandler(appname, dllname=None, logtype='Application')
Georg Brandl116aa622007-08-15 14:28:22 +00002416
2417 Returns a new instance of the :class:`NTEventLogHandler` class. The *appname* is
2418 used to define the application name as it appears in the event log. An
2419 appropriate registry entry is created using this name. The *dllname* should give
2420 the fully qualified pathname of a .dll or .exe which contains message
2421 definitions to hold in the log (if not specified, ``'win32service.pyd'`` is used
2422 - this is installed with the Win32 extensions and contains some basic
2423 placeholder message definitions. Note that use of these placeholders will make
2424 your event logs big, as the entire message source is held in the log. If you
2425 want slimmer logs, you have to pass in the name of your own .dll or .exe which
2426 contains the message definitions you want to use in the event log). The
2427 *logtype* is one of ``'Application'``, ``'System'`` or ``'Security'``, and
2428 defaults to ``'Application'``.
2429
2430
Benjamin Petersone41251e2008-04-25 01:59:09 +00002431 .. method:: close()
Georg Brandl116aa622007-08-15 14:28:22 +00002432
Benjamin Petersone41251e2008-04-25 01:59:09 +00002433 At this point, you can remove the application name from the registry as a
2434 source of event log entries. However, if you do this, you will not be able
2435 to see the events as you intended in the Event Log Viewer - it needs to be
2436 able to access the registry to get the .dll name. The current version does
Benjamin Peterson3e4f0552008-09-02 00:31:15 +00002437 not do this.
Georg Brandl116aa622007-08-15 14:28:22 +00002438
2439
Benjamin Petersone41251e2008-04-25 01:59:09 +00002440 .. method:: emit(record)
Georg Brandl116aa622007-08-15 14:28:22 +00002441
Benjamin Petersone41251e2008-04-25 01:59:09 +00002442 Determines the message ID, event category and event type, and then logs
2443 the message in the NT event log.
Georg Brandl116aa622007-08-15 14:28:22 +00002444
2445
Benjamin Petersone41251e2008-04-25 01:59:09 +00002446 .. method:: getEventCategory(record)
Georg Brandl116aa622007-08-15 14:28:22 +00002447
Benjamin Petersone41251e2008-04-25 01:59:09 +00002448 Returns the event category for the record. Override this if you want to
2449 specify your own categories. This version returns 0.
Georg Brandl116aa622007-08-15 14:28:22 +00002450
2451
Benjamin Petersone41251e2008-04-25 01:59:09 +00002452 .. method:: getEventType(record)
Georg Brandl116aa622007-08-15 14:28:22 +00002453
Benjamin Petersone41251e2008-04-25 01:59:09 +00002454 Returns the event type for the record. Override this if you want to
2455 specify your own types. This version does a mapping using the handler's
2456 typemap attribute, which is set up in :meth:`__init__` to a dictionary
2457 which contains mappings for :const:`DEBUG`, :const:`INFO`,
2458 :const:`WARNING`, :const:`ERROR` and :const:`CRITICAL`. If you are using
2459 your own levels, you will either need to override this method or place a
2460 suitable dictionary in the handler's *typemap* attribute.
Georg Brandl116aa622007-08-15 14:28:22 +00002461
2462
Benjamin Petersone41251e2008-04-25 01:59:09 +00002463 .. method:: getMessageID(record)
Georg Brandl116aa622007-08-15 14:28:22 +00002464
Benjamin Petersone41251e2008-04-25 01:59:09 +00002465 Returns the message ID for the record. If you are using your own messages,
2466 you could do this by having the *msg* passed to the logger being an ID
2467 rather than a format string. Then, in here, you could use a dictionary
2468 lookup to get the message ID. This version returns 1, which is the base
2469 message ID in :file:`win32service.pyd`.
Georg Brandl116aa622007-08-15 14:28:22 +00002470
Vinay Sajipd31f3632010-06-29 15:31:15 +00002471.. _smtp-handler:
Georg Brandl116aa622007-08-15 14:28:22 +00002472
2473SMTPHandler
2474^^^^^^^^^^^
2475
2476The :class:`SMTPHandler` class, located in the :mod:`logging.handlers` module,
2477supports sending logging messages to an email address via SMTP.
2478
2479
Georg Brandlcd7f32b2009-06-08 09:13:45 +00002480.. class:: SMTPHandler(mailhost, fromaddr, toaddrs, subject, credentials=None)
Georg Brandl116aa622007-08-15 14:28:22 +00002481
2482 Returns a new instance of the :class:`SMTPHandler` class. The instance is
2483 initialized with the from and to addresses and subject line of the email. The
2484 *toaddrs* should be a list of strings. To specify a non-standard SMTP port, use
2485 the (host, port) tuple format for the *mailhost* argument. If you use a string,
2486 the standard SMTP port is used. If your SMTP server requires authentication, you
2487 can specify a (username, password) tuple for the *credentials* argument.
2488
Georg Brandl116aa622007-08-15 14:28:22 +00002489
Benjamin Petersone41251e2008-04-25 01:59:09 +00002490 .. method:: emit(record)
Georg Brandl116aa622007-08-15 14:28:22 +00002491
Benjamin Petersone41251e2008-04-25 01:59:09 +00002492 Formats the record and sends it to the specified addressees.
Georg Brandl116aa622007-08-15 14:28:22 +00002493
2494
Benjamin Petersone41251e2008-04-25 01:59:09 +00002495 .. method:: getSubject(record)
Georg Brandl116aa622007-08-15 14:28:22 +00002496
Benjamin Petersone41251e2008-04-25 01:59:09 +00002497 If you want to specify a subject line which is record-dependent, override
2498 this method.
Georg Brandl116aa622007-08-15 14:28:22 +00002499
Vinay Sajipd31f3632010-06-29 15:31:15 +00002500.. _memory-handler:
Georg Brandl116aa622007-08-15 14:28:22 +00002501
2502MemoryHandler
2503^^^^^^^^^^^^^
2504
2505The :class:`MemoryHandler` class, located in the :mod:`logging.handlers` module,
2506supports buffering of logging records in memory, periodically flushing them to a
2507:dfn:`target` handler. Flushing occurs whenever the buffer is full, or when an
2508event of a certain severity or greater is seen.
2509
2510:class:`MemoryHandler` is a subclass of the more general
2511:class:`BufferingHandler`, which is an abstract class. This buffers logging
2512records in memory. Whenever each record is added to the buffer, a check is made
2513by calling :meth:`shouldFlush` to see if the buffer should be flushed. If it
2514should, then :meth:`flush` is expected to do the needful.
2515
2516
2517.. class:: BufferingHandler(capacity)
2518
2519 Initializes the handler with a buffer of the specified capacity.
2520
2521
Benjamin Petersone41251e2008-04-25 01:59:09 +00002522 .. method:: emit(record)
Georg Brandl116aa622007-08-15 14:28:22 +00002523
Benjamin Petersone41251e2008-04-25 01:59:09 +00002524 Appends the record to the buffer. If :meth:`shouldFlush` returns true,
2525 calls :meth:`flush` to process the buffer.
Georg Brandl116aa622007-08-15 14:28:22 +00002526
2527
Benjamin Petersone41251e2008-04-25 01:59:09 +00002528 .. method:: flush()
Georg Brandl116aa622007-08-15 14:28:22 +00002529
Benjamin Petersone41251e2008-04-25 01:59:09 +00002530 You can override this to implement custom flushing behavior. This version
2531 just zaps the buffer to empty.
Georg Brandl116aa622007-08-15 14:28:22 +00002532
2533
Benjamin Petersone41251e2008-04-25 01:59:09 +00002534 .. method:: shouldFlush(record)
Georg Brandl116aa622007-08-15 14:28:22 +00002535
Benjamin Petersone41251e2008-04-25 01:59:09 +00002536 Returns true if the buffer is up to capacity. This method can be
2537 overridden to implement custom flushing strategies.
Georg Brandl116aa622007-08-15 14:28:22 +00002538
2539
Georg Brandlcd7f32b2009-06-08 09:13:45 +00002540.. class:: MemoryHandler(capacity, flushLevel=ERROR, target=None)
Georg Brandl116aa622007-08-15 14:28:22 +00002541
2542 Returns a new instance of the :class:`MemoryHandler` class. The instance is
2543 initialized with a buffer size of *capacity*. If *flushLevel* is not specified,
2544 :const:`ERROR` is used. If no *target* is specified, the target will need to be
2545 set using :meth:`setTarget` before this handler does anything useful.
2546
2547
Benjamin Petersone41251e2008-04-25 01:59:09 +00002548 .. method:: close()
Georg Brandl116aa622007-08-15 14:28:22 +00002549
Benjamin Petersone41251e2008-04-25 01:59:09 +00002550 Calls :meth:`flush`, sets the target to :const:`None` and clears the
2551 buffer.
Georg Brandl116aa622007-08-15 14:28:22 +00002552
2553
Benjamin Petersone41251e2008-04-25 01:59:09 +00002554 .. method:: flush()
Georg Brandl116aa622007-08-15 14:28:22 +00002555
Benjamin Petersone41251e2008-04-25 01:59:09 +00002556 For a :class:`MemoryHandler`, flushing means just sending the buffered
2557 records to the target, if there is one. Override if you want different
2558 behavior.
Georg Brandl116aa622007-08-15 14:28:22 +00002559
2560
Benjamin Petersone41251e2008-04-25 01:59:09 +00002561 .. method:: setTarget(target)
Georg Brandl116aa622007-08-15 14:28:22 +00002562
Benjamin Petersone41251e2008-04-25 01:59:09 +00002563 Sets the target handler for this handler.
Georg Brandl116aa622007-08-15 14:28:22 +00002564
2565
Benjamin Petersone41251e2008-04-25 01:59:09 +00002566 .. method:: shouldFlush(record)
Georg Brandl116aa622007-08-15 14:28:22 +00002567
Benjamin Petersone41251e2008-04-25 01:59:09 +00002568 Checks for buffer full or a record at the *flushLevel* or higher.
Georg Brandl116aa622007-08-15 14:28:22 +00002569
2570
Vinay Sajipd31f3632010-06-29 15:31:15 +00002571.. _http-handler:
2572
Georg Brandl116aa622007-08-15 14:28:22 +00002573HTTPHandler
2574^^^^^^^^^^^
2575
2576The :class:`HTTPHandler` class, located in the :mod:`logging.handlers` module,
2577supports sending logging messages to a Web server, using either ``GET`` or
2578``POST`` semantics.
2579
2580
Vinay Sajip1b5646a2010-09-13 20:37:50 +00002581.. class:: HTTPHandler(host, url, method='GET', secure=False, credentials=None)
Georg Brandl116aa622007-08-15 14:28:22 +00002582
Vinay Sajip1b5646a2010-09-13 20:37:50 +00002583 Returns a new instance of the :class:`HTTPHandler` class. The *host* can be
2584 of the form ``host:port``, should you need to use a specific port number.
2585 If no *method* is specified, ``GET`` is used. If *secure* is True, an HTTPS
2586 connection will be used. If *credentials* is specified, it should be a
2587 2-tuple consisting of userid and password, which will be placed in an HTTP
2588 'Authorization' header using Basic authentication. If you specify
2589 credentials, you should also specify secure=True so that your userid and
2590 password are not passed in cleartext across the wire.
Georg Brandl116aa622007-08-15 14:28:22 +00002591
2592
Benjamin Petersone41251e2008-04-25 01:59:09 +00002593 .. method:: emit(record)
Georg Brandl116aa622007-08-15 14:28:22 +00002594
Senthil Kumaranf0769e82010-08-09 19:53:52 +00002595 Sends the record to the Web server as a percent-encoded dictionary.
Georg Brandl116aa622007-08-15 14:28:22 +00002596
2597
Vinay Sajip121a1c42010-09-08 10:46:15 +00002598.. _queue-handler:
2599
2600
2601QueueHandler
2602^^^^^^^^^^^^
2603
2604The :class:`QueueHandler` class, located in the :mod:`logging.handlers` module,
2605supports sending logging messages to a queue, such as those implemented in the
2606:mod:`queue` or :mod:`multiprocessing` modules.
2607
2608
2609.. class:: QueueHandler(queue)
2610
2611 Returns a new instance of the :class:`QueueHandler` class. The instance is
Vinay Sajip63891ed2010-09-13 20:02:39 +00002612 initialized with the queue to send messages to. The queue can be any queue-
2613 like object; it's passed as-is to the :meth:`enqueue` method, which needs
2614 to know how to send messages to it.
Vinay Sajip121a1c42010-09-08 10:46:15 +00002615
2616
2617 .. method:: emit(record)
2618
2619 Sends the record to the handler's queue.
2620
2621 .. method:: enqueue(record)
2622
2623 Enqueues the record on the queue using ``put_nowait()``; you may
2624 want to override this if you want to use blocking behaviour, or a
2625 timeout, or a customised queue implementation.
2626
2627
2628.. versionadded:: 3.2
2629
2630The :class:`QueueHandler` class was not present in previous versions.
2631
Vinay Sajip63891ed2010-09-13 20:02:39 +00002632.. _zeromq-handlers:
2633
2634You can use a :class:`QueueHandler` subclass to send messages to other kinds
2635of queues, for example a ZeroMQ "publish" socket. In the example below,the
2636socket is created separately and passed to the handler (as its 'queue')::
2637
2638 import zmq # using pyzmq, the Python binding for ZeroMQ
2639 import json # for serializing records portably
2640
2641 ctx = zmq.Context()
2642 sock = zmq.Socket(ctx, zmq.PUB) # or zmq.PUSH, or other suitable value
2643 sock.bind('tcp://*:5556') # or wherever
2644
2645 class ZeroMQSocketHandler(QueueHandler):
2646 def enqueue(self, record):
2647 data = json.dumps(record.__dict__)
2648 self.queue.send(data)
2649
Vinay Sajip0055c422010-09-14 09:42:39 +00002650 handler = ZeroMQSocketHandler(sock)
2651
2652
Vinay Sajip63891ed2010-09-13 20:02:39 +00002653Of course there are other ways of organizing this, for example passing in the
2654data needed by the handler to create the socket::
2655
2656 class ZeroMQSocketHandler(QueueHandler):
2657 def __init__(self, uri, socktype=zmq.PUB, ctx=None):
2658 self.ctx = ctx or zmq.Context()
2659 socket = zmq.Socket(self.ctx, socktype)
Vinay Sajip0055c422010-09-14 09:42:39 +00002660 QueueHandler.__init__(self, socket)
Vinay Sajip63891ed2010-09-13 20:02:39 +00002661
2662 def enqueue(self, record):
2663 data = json.dumps(record.__dict__)
2664 self.queue.send(data)
2665
Vinay Sajipde726922010-09-14 06:59:24 +00002666 def close(self):
2667 self.queue.close()
Vinay Sajip121a1c42010-09-08 10:46:15 +00002668
Christian Heimes8b0facf2007-12-04 19:30:01 +00002669.. _formatter-objects:
2670
Georg Brandl116aa622007-08-15 14:28:22 +00002671Formatter Objects
2672-----------------
2673
Benjamin Peterson75edad02009-01-01 15:05:06 +00002674.. currentmodule:: logging
2675
Georg Brandl116aa622007-08-15 14:28:22 +00002676:class:`Formatter`\ s have the following attributes and methods. They are
2677responsible for converting a :class:`LogRecord` to (usually) a string which can
2678be interpreted by either a human or an external system. The base
2679:class:`Formatter` allows a formatting string to be specified. If none is
2680supplied, the default value of ``'%(message)s'`` is used.
2681
2682A Formatter can be initialized with a format string which makes use of knowledge
2683of the :class:`LogRecord` attributes - such as the default value mentioned above
2684making use of the fact that the user's message and arguments are pre-formatted
2685into a :class:`LogRecord`'s *message* attribute. This format string contains
Ezio Melotti0639d5a2009-12-19 23:26:38 +00002686standard Python %-style mapping keys. See section :ref:`old-string-formatting`
Georg Brandl116aa622007-08-15 14:28:22 +00002687for more information on string formatting.
2688
2689Currently, the useful mapping keys in a :class:`LogRecord` are:
2690
2691+-------------------------+-----------------------------------------------+
2692| Format | Description |
2693+=========================+===============================================+
2694| ``%(name)s`` | Name of the logger (logging channel). |
2695+-------------------------+-----------------------------------------------+
2696| ``%(levelno)s`` | Numeric logging level for the message |
2697| | (:const:`DEBUG`, :const:`INFO`, |
2698| | :const:`WARNING`, :const:`ERROR`, |
2699| | :const:`CRITICAL`). |
2700+-------------------------+-----------------------------------------------+
2701| ``%(levelname)s`` | Text logging level for the message |
2702| | (``'DEBUG'``, ``'INFO'``, ``'WARNING'``, |
2703| | ``'ERROR'``, ``'CRITICAL'``). |
2704+-------------------------+-----------------------------------------------+
2705| ``%(pathname)s`` | Full pathname of the source file where the |
2706| | logging call was issued (if available). |
2707+-------------------------+-----------------------------------------------+
2708| ``%(filename)s`` | Filename portion of pathname. |
2709+-------------------------+-----------------------------------------------+
2710| ``%(module)s`` | Module (name portion of filename). |
2711+-------------------------+-----------------------------------------------+
2712| ``%(funcName)s`` | Name of function containing the logging call. |
2713+-------------------------+-----------------------------------------------+
2714| ``%(lineno)d`` | Source line number where the logging call was |
2715| | issued (if available). |
2716+-------------------------+-----------------------------------------------+
2717| ``%(created)f`` | Time when the :class:`LogRecord` was created |
2718| | (as returned by :func:`time.time`). |
2719+-------------------------+-----------------------------------------------+
2720| ``%(relativeCreated)d`` | Time in milliseconds when the LogRecord was |
2721| | created, relative to the time the logging |
2722| | module was loaded. |
2723+-------------------------+-----------------------------------------------+
2724| ``%(asctime)s`` | Human-readable time when the |
2725| | :class:`LogRecord` was created. By default |
2726| | this is of the form "2003-07-08 16:49:45,896" |
2727| | (the numbers after the comma are millisecond |
2728| | portion of the time). |
2729+-------------------------+-----------------------------------------------+
2730| ``%(msecs)d`` | Millisecond portion of the time when the |
2731| | :class:`LogRecord` was created. |
2732+-------------------------+-----------------------------------------------+
2733| ``%(thread)d`` | Thread ID (if available). |
2734+-------------------------+-----------------------------------------------+
2735| ``%(threadName)s`` | Thread name (if available). |
2736+-------------------------+-----------------------------------------------+
2737| ``%(process)d`` | Process ID (if available). |
2738+-------------------------+-----------------------------------------------+
Vinay Sajip121a1c42010-09-08 10:46:15 +00002739| ``%(processName)s`` | Process name (if available). |
2740+-------------------------+-----------------------------------------------+
Georg Brandl116aa622007-08-15 14:28:22 +00002741| ``%(message)s`` | The logged message, computed as ``msg % |
2742| | args``. |
2743+-------------------------+-----------------------------------------------+
2744
Georg Brandl116aa622007-08-15 14:28:22 +00002745
Georg Brandlcd7f32b2009-06-08 09:13:45 +00002746.. class:: Formatter(fmt=None, datefmt=None)
Georg Brandl116aa622007-08-15 14:28:22 +00002747
Georg Brandlcd7f32b2009-06-08 09:13:45 +00002748 Returns a new instance of the :class:`Formatter` class. The instance is
2749 initialized with a format string for the message as a whole, as well as a
2750 format string for the date/time portion of a message. If no *fmt* is
2751 specified, ``'%(message)s'`` is used. If no *datefmt* is specified, the
2752 ISO8601 date format is used.
Georg Brandl116aa622007-08-15 14:28:22 +00002753
Benjamin Petersone41251e2008-04-25 01:59:09 +00002754 .. method:: format(record)
Georg Brandl116aa622007-08-15 14:28:22 +00002755
Benjamin Petersone41251e2008-04-25 01:59:09 +00002756 The record's attribute dictionary is used as the operand to a string
2757 formatting operation. Returns the resulting string. Before formatting the
2758 dictionary, a couple of preparatory steps are carried out. The *message*
2759 attribute of the record is computed using *msg* % *args*. If the
2760 formatting string contains ``'(asctime)'``, :meth:`formatTime` is called
2761 to format the event time. If there is exception information, it is
2762 formatted using :meth:`formatException` and appended to the message. Note
2763 that the formatted exception information is cached in attribute
2764 *exc_text*. This is useful because the exception information can be
2765 pickled and sent across the wire, but you should be careful if you have
2766 more than one :class:`Formatter` subclass which customizes the formatting
2767 of exception information. In this case, you will have to clear the cached
2768 value after a formatter has done its formatting, so that the next
2769 formatter to handle the event doesn't use the cached value but
2770 recalculates it afresh.
Georg Brandl116aa622007-08-15 14:28:22 +00002771
2772
Georg Brandlcd7f32b2009-06-08 09:13:45 +00002773 .. method:: formatTime(record, datefmt=None)
Georg Brandl116aa622007-08-15 14:28:22 +00002774
Benjamin Petersone41251e2008-04-25 01:59:09 +00002775 This method should be called from :meth:`format` by a formatter which
2776 wants to make use of a formatted time. This method can be overridden in
2777 formatters to provide for any specific requirement, but the basic behavior
2778 is as follows: if *datefmt* (a string) is specified, it is used with
2779 :func:`time.strftime` to format the creation time of the
2780 record. Otherwise, the ISO8601 format is used. The resulting string is
2781 returned.
Georg Brandl116aa622007-08-15 14:28:22 +00002782
2783
Benjamin Petersone41251e2008-04-25 01:59:09 +00002784 .. method:: formatException(exc_info)
Georg Brandl116aa622007-08-15 14:28:22 +00002785
Benjamin Petersone41251e2008-04-25 01:59:09 +00002786 Formats the specified exception information (a standard exception tuple as
2787 returned by :func:`sys.exc_info`) as a string. This default implementation
2788 just uses :func:`traceback.print_exception`. The resulting string is
2789 returned.
Georg Brandl116aa622007-08-15 14:28:22 +00002790
Vinay Sajipd31f3632010-06-29 15:31:15 +00002791.. _filter:
Georg Brandl116aa622007-08-15 14:28:22 +00002792
2793Filter Objects
2794--------------
2795
2796:class:`Filter`\ s can be used by :class:`Handler`\ s and :class:`Logger`\ s for
2797more sophisticated filtering than is provided by levels. The base filter class
2798only allows events which are below a certain point in the logger hierarchy. For
2799example, a filter initialized with "A.B" will allow events logged by loggers
2800"A.B", "A.B.C", "A.B.C.D", "A.B.D" etc. but not "A.BB", "B.A.B" etc. If
2801initialized with the empty string, all events are passed.
2802
2803
Georg Brandlcd7f32b2009-06-08 09:13:45 +00002804.. class:: Filter(name='')
Georg Brandl116aa622007-08-15 14:28:22 +00002805
2806 Returns an instance of the :class:`Filter` class. If *name* is specified, it
2807 names a logger which, together with its children, will have its events allowed
Georg Brandlcd7f32b2009-06-08 09:13:45 +00002808 through the filter. If *name* is the empty string, allows every event.
Georg Brandl116aa622007-08-15 14:28:22 +00002809
2810
Benjamin Petersone41251e2008-04-25 01:59:09 +00002811 .. method:: filter(record)
Georg Brandl116aa622007-08-15 14:28:22 +00002812
Benjamin Petersone41251e2008-04-25 01:59:09 +00002813 Is the specified record to be logged? Returns zero for no, nonzero for
2814 yes. If deemed appropriate, the record may be modified in-place by this
2815 method.
Georg Brandl116aa622007-08-15 14:28:22 +00002816
Vinay Sajip81010212010-08-19 19:17:41 +00002817Note that filters attached to handlers are consulted whenever an event is
2818emitted by the handler, whereas filters attached to loggers are consulted
2819whenever an event is logged to the handler (using :meth:`debug`, :meth:`info`,
2820etc.) This means that events which have been generated by descendant loggers
2821will not be filtered by a logger's filter setting, unless the filter has also
2822been applied to those descendant loggers.
2823
Vinay Sajipd31f3632010-06-29 15:31:15 +00002824.. _log-record:
Georg Brandl116aa622007-08-15 14:28:22 +00002825
2826LogRecord Objects
2827-----------------
2828
Vinay Sajip4039aff2010-09-11 10:25:28 +00002829:class:`LogRecord` instances are created automatically by the :class:`Logger`
2830every time something is logged, and can be created manually via
2831:func:`makeLogRecord` (for example, from a pickled event received over the
2832wire).
Georg Brandl116aa622007-08-15 14:28:22 +00002833
2834
Georg Brandlcd7f32b2009-06-08 09:13:45 +00002835.. class:: LogRecord(name, lvl, pathname, lineno, msg, args, exc_info, func=None)
Georg Brandl116aa622007-08-15 14:28:22 +00002836
Vinay Sajip4039aff2010-09-11 10:25:28 +00002837 Contains all the information pertinent to the event being logged.
Georg Brandl116aa622007-08-15 14:28:22 +00002838
Vinay Sajip4039aff2010-09-11 10:25:28 +00002839 The primary information is passed in :attr:`msg` and :attr:`args`, which
2840 are combined using ``msg % args`` to create the :attr:`message` field of the
2841 record.
2842
2843 .. attribute:: args
2844
2845 Tuple of arguments to be used in formatting :attr:`msg`.
2846
2847 .. attribute:: exc_info
2848
2849 Exception tuple (à la `sys.exc_info`) or `None` if no exception
2850 information is availble.
2851
2852 .. attribute:: func
2853
2854 Name of the function of origin (i.e. in which the logging call was made).
2855
2856 .. attribute:: lineno
2857
2858 Line number in the source file of origin.
2859
2860 .. attribute:: lvl
2861
2862 Numeric logging level.
2863
2864 .. attribute:: message
2865
2866 Bound to the result of :meth:`getMessage` when
2867 :meth:`Formatter.format(record)<Formatter.format>` is invoked.
2868
2869 .. attribute:: msg
2870
2871 User-supplied :ref:`format string<string-formatting>` or arbitrary object
2872 (see :ref:`arbitrary-object-messages`) used in :meth:`getMessage`.
2873
2874 .. attribute:: name
2875
2876 Name of the logger that emitted the record.
2877
2878 .. attribute:: pathname
2879
2880 Absolute pathname of the source file of origin.
Georg Brandl116aa622007-08-15 14:28:22 +00002881
Benjamin Petersone41251e2008-04-25 01:59:09 +00002882 .. method:: getMessage()
Georg Brandl116aa622007-08-15 14:28:22 +00002883
Benjamin Petersone41251e2008-04-25 01:59:09 +00002884 Returns the message for this :class:`LogRecord` instance after merging any
Vinay Sajip4039aff2010-09-11 10:25:28 +00002885 user-supplied arguments with the message. If the user-supplied message
2886 argument to the logging call is not a string, :func:`str` is called on it to
2887 convert it to a string. This allows use of user-defined classes as
2888 messages, whose ``__str__`` method can return the actual format string to
2889 be used.
2890
2891 .. versionchanged:: 2.5
2892 *func* was added.
Benjamin Petersone41251e2008-04-25 01:59:09 +00002893
Vinay Sajipd31f3632010-06-29 15:31:15 +00002894.. _logger-adapter:
Georg Brandl116aa622007-08-15 14:28:22 +00002895
Christian Heimes04c420f2008-01-18 18:40:46 +00002896LoggerAdapter Objects
2897---------------------
2898
Christian Heimes04c420f2008-01-18 18:40:46 +00002899:class:`LoggerAdapter` instances are used to conveniently pass contextual
Georg Brandl86def6c2008-01-21 20:36:10 +00002900information into logging calls. For a usage example , see the section on
2901`adding contextual information to your logging output`__.
2902
2903__ context-info_
Christian Heimes04c420f2008-01-18 18:40:46 +00002904
2905.. class:: LoggerAdapter(logger, extra)
2906
2907 Returns an instance of :class:`LoggerAdapter` initialized with an
2908 underlying :class:`Logger` instance and a dict-like object.
2909
Benjamin Petersone41251e2008-04-25 01:59:09 +00002910 .. method:: process(msg, kwargs)
Christian Heimes04c420f2008-01-18 18:40:46 +00002911
Benjamin Petersone41251e2008-04-25 01:59:09 +00002912 Modifies the message and/or keyword arguments passed to a logging call in
2913 order to insert contextual information. This implementation takes the object
2914 passed as *extra* to the constructor and adds it to *kwargs* using key
2915 'extra'. The return value is a (*msg*, *kwargs*) tuple which has the
2916 (possibly modified) versions of the arguments passed in.
Christian Heimes04c420f2008-01-18 18:40:46 +00002917
2918In addition to the above, :class:`LoggerAdapter` supports all the logging
2919methods of :class:`Logger`, i.e. :meth:`debug`, :meth:`info`, :meth:`warning`,
2920:meth:`error`, :meth:`exception`, :meth:`critical` and :meth:`log`. These
2921methods have the same signatures as their counterparts in :class:`Logger`, so
2922you can use the two types of instances interchangeably.
2923
Ezio Melotti4d5195b2010-04-20 10:57:44 +00002924.. versionchanged:: 3.2
Georg Brandl67b21b72010-08-17 15:07:14 +00002925 The :meth:`isEnabledFor` method was added to :class:`LoggerAdapter`. This
2926 method delegates to the underlying logger.
Benjamin Peterson22005fc2010-04-11 16:25:06 +00002927
Georg Brandl116aa622007-08-15 14:28:22 +00002928
2929Thread Safety
2930-------------
2931
2932The logging module is intended to be thread-safe without any special work
2933needing to be done by its clients. It achieves this though using threading
2934locks; there is one lock to serialize access to the module's shared data, and
2935each handler also creates a lock to serialize access to its underlying I/O.
2936
Benjamin Petersond23f8222009-04-05 19:13:16 +00002937If you are implementing asynchronous signal handlers using the :mod:`signal`
2938module, you may not be able to use logging from within such handlers. This is
2939because lock implementations in the :mod:`threading` module are not always
2940re-entrant, and so cannot be invoked from such signal handlers.
Georg Brandl116aa622007-08-15 14:28:22 +00002941
Benjamin Peterson9451a1c2010-03-13 22:30:34 +00002942
2943Integration with the warnings module
2944------------------------------------
2945
2946The :func:`captureWarnings` function can be used to integrate :mod:`logging`
2947with the :mod:`warnings` module.
2948
2949.. function:: captureWarnings(capture)
2950
2951 This function is used to turn the capture of warnings by logging on and
2952 off.
2953
2954 If `capture` is `True`, warnings issued by the :mod:`warnings` module
2955 will be redirected to the logging system. Specifically, a warning will be
2956 formatted using :func:`warnings.formatwarning` and the resulting string
2957 logged to a logger named "py.warnings" with a severity of `WARNING`.
2958
2959 If `capture` is `False`, the redirection of warnings to the logging system
2960 will stop, and warnings will be redirected to their original destinations
2961 (i.e. those in effect before `captureWarnings(True)` was called).
2962
2963
Georg Brandl116aa622007-08-15 14:28:22 +00002964Configuration
2965-------------
2966
2967
2968.. _logging-config-api:
2969
2970Configuration functions
2971^^^^^^^^^^^^^^^^^^^^^^^
2972
Georg Brandl116aa622007-08-15 14:28:22 +00002973The following functions configure the logging module. They are located in the
2974:mod:`logging.config` module. Their use is optional --- you can configure the
2975logging module using these functions or by making calls to the main API (defined
2976in :mod:`logging` itself) and defining handlers which are declared either in
2977:mod:`logging` or :mod:`logging.handlers`.
2978
Benjamin Petersond7c3ed52010-06-27 22:32:30 +00002979.. function:: dictConfig(config)
Georg Brandl116aa622007-08-15 14:28:22 +00002980
Benjamin Petersond7c3ed52010-06-27 22:32:30 +00002981 Takes the logging configuration from a dictionary. The contents of
2982 this dictionary are described in :ref:`logging-config-dictschema`
2983 below.
2984
2985 If an error is encountered during configuration, this function will
2986 raise a :exc:`ValueError`, :exc:`TypeError`, :exc:`AttributeError`
2987 or :exc:`ImportError` with a suitably descriptive message. The
2988 following is a (possibly incomplete) list of conditions which will
2989 raise an error:
2990
2991 * A ``level`` which is not a string or which is a string not
2992 corresponding to an actual logging level.
2993 * A ``propagate`` value which is not a boolean.
2994 * An id which does not have a corresponding destination.
2995 * A non-existent handler id found during an incremental call.
2996 * An invalid logger name.
2997 * Inability to resolve to an internal or external object.
2998
2999 Parsing is performed by the :class:`DictConfigurator` class, whose
3000 constructor is passed the dictionary used for configuration, and
3001 has a :meth:`configure` method. The :mod:`logging.config` module
3002 has a callable attribute :attr:`dictConfigClass`
3003 which is initially set to :class:`DictConfigurator`.
3004 You can replace the value of :attr:`dictConfigClass` with a
3005 suitable implementation of your own.
3006
3007 :func:`dictConfig` calls :attr:`dictConfigClass` passing
3008 the specified dictionary, and then calls the :meth:`configure` method on
3009 the returned object to put the configuration into effect::
3010
3011 def dictConfig(config):
3012 dictConfigClass(config).configure()
3013
3014 For example, a subclass of :class:`DictConfigurator` could call
3015 ``DictConfigurator.__init__()`` in its own :meth:`__init__()`, then
3016 set up custom prefixes which would be usable in the subsequent
3017 :meth:`configure` call. :attr:`dictConfigClass` would be bound to
3018 this new subclass, and then :func:`dictConfig` could be called exactly as
3019 in the default, uncustomized state.
3020
3021.. function:: fileConfig(fname[, defaults])
Georg Brandl116aa622007-08-15 14:28:22 +00003022
Alexandre Vassalotti1d1eaa42008-05-14 22:59:42 +00003023 Reads the logging configuration from a :mod:`configparser`\-format file named
Benjamin Peterson960cf0f2009-01-09 04:11:44 +00003024 *fname*. This function can be called several times from an application,
Benjamin Petersond7c3ed52010-06-27 22:32:30 +00003025 allowing an end user to select from various pre-canned
Alexandre Vassalotti1d1eaa42008-05-14 22:59:42 +00003026 configurations (if the developer provides a mechanism to present the choices
3027 and load the chosen configuration). Defaults to be passed to the ConfigParser
3028 can be specified in the *defaults* argument.
Georg Brandl116aa622007-08-15 14:28:22 +00003029
Georg Brandlcd7f32b2009-06-08 09:13:45 +00003030
3031.. function:: listen(port=DEFAULT_LOGGING_CONFIG_PORT)
Georg Brandl116aa622007-08-15 14:28:22 +00003032
3033 Starts up a socket server on the specified port, and listens for new
3034 configurations. If no port is specified, the module's default
3035 :const:`DEFAULT_LOGGING_CONFIG_PORT` is used. Logging configurations will be
3036 sent as a file suitable for processing by :func:`fileConfig`. Returns a
3037 :class:`Thread` instance on which you can call :meth:`start` to start the
3038 server, and which you can :meth:`join` when appropriate. To stop the server,
Christian Heimes8b0facf2007-12-04 19:30:01 +00003039 call :func:`stopListening`.
3040
3041 To send a configuration to the socket, read in the configuration file and
3042 send it to the socket as a string of bytes preceded by a four-byte length
3043 string packed in binary using ``struct.pack('>L', n)``.
Georg Brandl116aa622007-08-15 14:28:22 +00003044
3045
3046.. function:: stopListening()
3047
Christian Heimes8b0facf2007-12-04 19:30:01 +00003048 Stops the listening server which was created with a call to :func:`listen`.
3049 This is typically called before calling :meth:`join` on the return value from
Georg Brandl116aa622007-08-15 14:28:22 +00003050 :func:`listen`.
3051
3052
Benjamin Petersond7c3ed52010-06-27 22:32:30 +00003053.. _logging-config-dictschema:
3054
3055Configuration dictionary schema
3056^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
3057
3058Describing a logging configuration requires listing the various
3059objects to create and the connections between them; for example, you
3060may create a handler named "console" and then say that the logger
3061named "startup" will send its messages to the "console" handler.
3062These objects aren't limited to those provided by the :mod:`logging`
3063module because you might write your own formatter or handler class.
3064The parameters to these classes may also need to include external
3065objects such as ``sys.stderr``. The syntax for describing these
3066objects and connections is defined in :ref:`logging-config-dict-connections`
3067below.
3068
3069Dictionary Schema Details
3070"""""""""""""""""""""""""
3071
3072The dictionary passed to :func:`dictConfig` must contain the following
3073keys:
3074
3075* `version` - to be set to an integer value representing the schema
3076 version. The only valid value at present is 1, but having this key
3077 allows the schema to evolve while still preserving backwards
3078 compatibility.
3079
3080All other keys are optional, but if present they will be interpreted
3081as described below. In all cases below where a 'configuring dict' is
3082mentioned, it will be checked for the special ``'()'`` key to see if a
3083custom instantiation is required. If so, the mechanism described in
3084:ref:`logging-config-dict-userdef` below is used to create an instance;
3085otherwise, the context is used to determine what to instantiate.
3086
3087* `formatters` - the corresponding value will be a dict in which each
3088 key is a formatter id and each value is a dict describing how to
3089 configure the corresponding Formatter instance.
3090
3091 The configuring dict is searched for keys ``format`` and ``datefmt``
3092 (with defaults of ``None``) and these are used to construct a
3093 :class:`logging.Formatter` instance.
3094
3095* `filters` - the corresponding value will be a dict in which each key
3096 is a filter id and each value is a dict describing how to configure
3097 the corresponding Filter instance.
3098
3099 The configuring dict is searched for the key ``name`` (defaulting to the
3100 empty string) and this is used to construct a :class:`logging.Filter`
3101 instance.
3102
3103* `handlers` - the corresponding value will be a dict in which each
3104 key is a handler id and each value is a dict describing how to
3105 configure the corresponding Handler instance.
3106
3107 The configuring dict is searched for the following keys:
3108
3109 * ``class`` (mandatory). This is the fully qualified name of the
3110 handler class.
3111
3112 * ``level`` (optional). The level of the handler.
3113
3114 * ``formatter`` (optional). The id of the formatter for this
3115 handler.
3116
3117 * ``filters`` (optional). A list of ids of the filters for this
3118 handler.
3119
3120 All *other* keys are passed through as keyword arguments to the
3121 handler's constructor. For example, given the snippet::
3122
3123 handlers:
3124 console:
3125 class : logging.StreamHandler
3126 formatter: brief
3127 level : INFO
3128 filters: [allow_foo]
3129 stream : ext://sys.stdout
3130 file:
3131 class : logging.handlers.RotatingFileHandler
3132 formatter: precise
3133 filename: logconfig.log
3134 maxBytes: 1024
3135 backupCount: 3
3136
3137 the handler with id ``console`` is instantiated as a
3138 :class:`logging.StreamHandler`, using ``sys.stdout`` as the underlying
3139 stream. The handler with id ``file`` is instantiated as a
3140 :class:`logging.handlers.RotatingFileHandler` with the keyword arguments
3141 ``filename='logconfig.log', maxBytes=1024, backupCount=3``.
3142
3143* `loggers` - the corresponding value will be a dict in which each key
3144 is a logger name and each value is a dict describing how to
3145 configure the corresponding Logger instance.
3146
3147 The configuring dict is searched for the following keys:
3148
3149 * ``level`` (optional). The level of the logger.
3150
3151 * ``propagate`` (optional). The propagation setting of the logger.
3152
3153 * ``filters`` (optional). A list of ids of the filters for this
3154 logger.
3155
3156 * ``handlers`` (optional). A list of ids of the handlers for this
3157 logger.
3158
3159 The specified loggers will be configured according to the level,
3160 propagation, filters and handlers specified.
3161
3162* `root` - this will be the configuration for the root logger.
3163 Processing of the configuration will be as for any logger, except
3164 that the ``propagate`` setting will not be applicable.
3165
3166* `incremental` - whether the configuration is to be interpreted as
3167 incremental to the existing configuration. This value defaults to
3168 ``False``, which means that the specified configuration replaces the
3169 existing configuration with the same semantics as used by the
3170 existing :func:`fileConfig` API.
3171
3172 If the specified value is ``True``, the configuration is processed
3173 as described in the section on :ref:`logging-config-dict-incremental`.
3174
3175* `disable_existing_loggers` - whether any existing loggers are to be
3176 disabled. This setting mirrors the parameter of the same name in
3177 :func:`fileConfig`. If absent, this parameter defaults to ``True``.
3178 This value is ignored if `incremental` is ``True``.
3179
3180.. _logging-config-dict-incremental:
3181
3182Incremental Configuration
3183"""""""""""""""""""""""""
3184
3185It is difficult to provide complete flexibility for incremental
3186configuration. For example, because objects such as filters
3187and formatters are anonymous, once a configuration is set up, it is
3188not possible to refer to such anonymous objects when augmenting a
3189configuration.
3190
3191Furthermore, there is not a compelling case for arbitrarily altering
3192the object graph of loggers, handlers, filters, formatters at
3193run-time, once a configuration is set up; the verbosity of loggers and
3194handlers can be controlled just by setting levels (and, in the case of
3195loggers, propagation flags). Changing the object graph arbitrarily in
3196a safe way is problematic in a multi-threaded environment; while not
3197impossible, the benefits are not worth the complexity it adds to the
3198implementation.
3199
3200Thus, when the ``incremental`` key of a configuration dict is present
3201and is ``True``, the system will completely ignore any ``formatters`` and
3202``filters`` entries, and process only the ``level``
3203settings in the ``handlers`` entries, and the ``level`` and
3204``propagate`` settings in the ``loggers`` and ``root`` entries.
3205
3206Using a value in the configuration dict lets configurations to be sent
3207over the wire as pickled dicts to a socket listener. Thus, the logging
3208verbosity of a long-running application can be altered over time with
3209no need to stop and restart the application.
3210
3211.. _logging-config-dict-connections:
3212
3213Object connections
3214""""""""""""""""""
3215
3216The schema describes a set of logging objects - loggers,
3217handlers, formatters, filters - which are connected to each other in
3218an object graph. Thus, the schema needs to represent connections
3219between the objects. For example, say that, once configured, a
3220particular logger has attached to it a particular handler. For the
3221purposes of this discussion, we can say that the logger represents the
3222source, and the handler the destination, of a connection between the
3223two. Of course in the configured objects this is represented by the
3224logger holding a reference to the handler. In the configuration dict,
3225this is done by giving each destination object an id which identifies
3226it unambiguously, and then using the id in the source object's
3227configuration to indicate that a connection exists between the source
3228and the destination object with that id.
3229
3230So, for example, consider the following YAML snippet::
3231
3232 formatters:
3233 brief:
3234 # configuration for formatter with id 'brief' goes here
3235 precise:
3236 # configuration for formatter with id 'precise' goes here
3237 handlers:
3238 h1: #This is an id
3239 # configuration of handler with id 'h1' goes here
3240 formatter: brief
3241 h2: #This is another id
3242 # configuration of handler with id 'h2' goes here
3243 formatter: precise
3244 loggers:
3245 foo.bar.baz:
3246 # other configuration for logger 'foo.bar.baz'
3247 handlers: [h1, h2]
3248
3249(Note: YAML used here because it's a little more readable than the
3250equivalent Python source form for the dictionary.)
3251
3252The ids for loggers are the logger names which would be used
3253programmatically to obtain a reference to those loggers, e.g.
3254``foo.bar.baz``. The ids for Formatters and Filters can be any string
3255value (such as ``brief``, ``precise`` above) and they are transient,
3256in that they are only meaningful for processing the configuration
3257dictionary and used to determine connections between objects, and are
3258not persisted anywhere when the configuration call is complete.
3259
3260The above snippet indicates that logger named ``foo.bar.baz`` should
3261have two handlers attached to it, which are described by the handler
3262ids ``h1`` and ``h2``. The formatter for ``h1`` is that described by id
3263``brief``, and the formatter for ``h2`` is that described by id
3264``precise``.
3265
3266
3267.. _logging-config-dict-userdef:
3268
3269User-defined objects
3270""""""""""""""""""""
3271
3272The schema supports user-defined objects for handlers, filters and
3273formatters. (Loggers do not need to have different types for
3274different instances, so there is no support in this configuration
3275schema for user-defined logger classes.)
3276
3277Objects to be configured are described by dictionaries
3278which detail their configuration. In some places, the logging system
3279will be able to infer from the context how an object is to be
3280instantiated, but when a user-defined object is to be instantiated,
3281the system will not know how to do this. In order to provide complete
3282flexibility for user-defined object instantiation, the user needs
3283to provide a 'factory' - a callable which is called with a
3284configuration dictionary and which returns the instantiated object.
3285This is signalled by an absolute import path to the factory being
3286made available under the special key ``'()'``. Here's a concrete
3287example::
3288
3289 formatters:
3290 brief:
3291 format: '%(message)s'
3292 default:
3293 format: '%(asctime)s %(levelname)-8s %(name)-15s %(message)s'
3294 datefmt: '%Y-%m-%d %H:%M:%S'
3295 custom:
3296 (): my.package.customFormatterFactory
3297 bar: baz
3298 spam: 99.9
3299 answer: 42
3300
3301The above YAML snippet defines three formatters. The first, with id
3302``brief``, is a standard :class:`logging.Formatter` instance with the
3303specified format string. The second, with id ``default``, has a
3304longer format and also defines the time format explicitly, and will
3305result in a :class:`logging.Formatter` initialized with those two format
3306strings. Shown in Python source form, the ``brief`` and ``default``
3307formatters have configuration sub-dictionaries::
3308
3309 {
3310 'format' : '%(message)s'
3311 }
3312
3313and::
3314
3315 {
3316 'format' : '%(asctime)s %(levelname)-8s %(name)-15s %(message)s',
3317 'datefmt' : '%Y-%m-%d %H:%M:%S'
3318 }
3319
3320respectively, and as these dictionaries do not contain the special key
3321``'()'``, the instantiation is inferred from the context: as a result,
3322standard :class:`logging.Formatter` instances are created. The
3323configuration sub-dictionary for the third formatter, with id
3324``custom``, is::
3325
3326 {
3327 '()' : 'my.package.customFormatterFactory',
3328 'bar' : 'baz',
3329 'spam' : 99.9,
3330 'answer' : 42
3331 }
3332
3333and this contains the special key ``'()'``, which means that
3334user-defined instantiation is wanted. In this case, the specified
3335factory callable will be used. If it is an actual callable it will be
3336used directly - otherwise, if you specify a string (as in the example)
3337the actual callable will be located using normal import mechanisms.
3338The callable will be called with the **remaining** items in the
3339configuration sub-dictionary as keyword arguments. In the above
3340example, the formatter with id ``custom`` will be assumed to be
3341returned by the call::
3342
3343 my.package.customFormatterFactory(bar='baz', spam=99.9, answer=42)
3344
3345The key ``'()'`` has been used as the special key because it is not a
3346valid keyword parameter name, and so will not clash with the names of
3347the keyword arguments used in the call. The ``'()'`` also serves as a
3348mnemonic that the corresponding value is a callable.
3349
3350
3351.. _logging-config-dict-externalobj:
3352
3353Access to external objects
3354""""""""""""""""""""""""""
3355
3356There are times where a configuration needs to refer to objects
3357external to the configuration, for example ``sys.stderr``. If the
3358configuration dict is constructed using Python code, this is
3359straightforward, but a problem arises when the configuration is
3360provided via a text file (e.g. JSON, YAML). In a text file, there is
3361no standard way to distinguish ``sys.stderr`` from the literal string
3362``'sys.stderr'``. To facilitate this distinction, the configuration
3363system looks for certain special prefixes in string values and
3364treat them specially. For example, if the literal string
3365``'ext://sys.stderr'`` is provided as a value in the configuration,
3366then the ``ext://`` will be stripped off and the remainder of the
3367value processed using normal import mechanisms.
3368
3369The handling of such prefixes is done in a way analogous to protocol
3370handling: there is a generic mechanism to look for prefixes which
3371match the regular expression ``^(?P<prefix>[a-z]+)://(?P<suffix>.*)$``
3372whereby, if the ``prefix`` is recognised, the ``suffix`` is processed
3373in a prefix-dependent manner and the result of the processing replaces
3374the string value. If the prefix is not recognised, then the string
3375value will be left as-is.
3376
3377
3378.. _logging-config-dict-internalobj:
3379
3380Access to internal objects
3381""""""""""""""""""""""""""
3382
3383As well as external objects, there is sometimes also a need to refer
3384to objects in the configuration. This will be done implicitly by the
3385configuration system for things that it knows about. For example, the
3386string value ``'DEBUG'`` for a ``level`` in a logger or handler will
3387automatically be converted to the value ``logging.DEBUG``, and the
3388``handlers``, ``filters`` and ``formatter`` entries will take an
3389object id and resolve to the appropriate destination object.
3390
3391However, a more generic mechanism is needed for user-defined
3392objects which are not known to the :mod:`logging` module. For
3393example, consider :class:`logging.handlers.MemoryHandler`, which takes
3394a ``target`` argument which is another handler to delegate to. Since
3395the system already knows about this class, then in the configuration,
3396the given ``target`` just needs to be the object id of the relevant
3397target handler, and the system will resolve to the handler from the
3398id. If, however, a user defines a ``my.package.MyHandler`` which has
3399an ``alternate`` handler, the configuration system would not know that
3400the ``alternate`` referred to a handler. To cater for this, a generic
3401resolution system allows the user to specify::
3402
3403 handlers:
3404 file:
3405 # configuration of file handler goes here
3406
3407 custom:
3408 (): my.package.MyHandler
3409 alternate: cfg://handlers.file
3410
3411The literal string ``'cfg://handlers.file'`` will be resolved in an
3412analogous way to strings with the ``ext://`` prefix, but looking
3413in the configuration itself rather than the import namespace. The
3414mechanism allows access by dot or by index, in a similar way to
3415that provided by ``str.format``. Thus, given the following snippet::
3416
3417 handlers:
3418 email:
3419 class: logging.handlers.SMTPHandler
3420 mailhost: localhost
3421 fromaddr: my_app@domain.tld
3422 toaddrs:
3423 - support_team@domain.tld
3424 - dev_team@domain.tld
3425 subject: Houston, we have a problem.
3426
3427in the configuration, the string ``'cfg://handlers'`` would resolve to
3428the dict with key ``handlers``, the string ``'cfg://handlers.email``
3429would resolve to the dict with key ``email`` in the ``handlers`` dict,
3430and so on. The string ``'cfg://handlers.email.toaddrs[1]`` would
3431resolve to ``'dev_team.domain.tld'`` and the string
3432``'cfg://handlers.email.toaddrs[0]'`` would resolve to the value
3433``'support_team@domain.tld'``. The ``subject`` value could be accessed
3434using either ``'cfg://handlers.email.subject'`` or, equivalently,
3435``'cfg://handlers.email[subject]'``. The latter form only needs to be
3436used if the key contains spaces or non-alphanumeric characters. If an
3437index value consists only of decimal digits, access will be attempted
3438using the corresponding integer value, falling back to the string
3439value if needed.
3440
3441Given a string ``cfg://handlers.myhandler.mykey.123``, this will
3442resolve to ``config_dict['handlers']['myhandler']['mykey']['123']``.
3443If the string is specified as ``cfg://handlers.myhandler.mykey[123]``,
3444the system will attempt to retrieve the value from
3445``config_dict['handlers']['myhandler']['mykey'][123]``, and fall back
3446to ``config_dict['handlers']['myhandler']['mykey']['123']`` if that
3447fails.
3448
Georg Brandl116aa622007-08-15 14:28:22 +00003449.. _logging-config-fileformat:
3450
3451Configuration file format
3452^^^^^^^^^^^^^^^^^^^^^^^^^
3453
Benjamin Peterson960cf0f2009-01-09 04:11:44 +00003454The configuration file format understood by :func:`fileConfig` is based on
3455:mod:`configparser` functionality. The file must contain sections called
3456``[loggers]``, ``[handlers]`` and ``[formatters]`` which identify by name the
3457entities of each type which are defined in the file. For each such entity, there
3458is a separate section which identifies how that entity is configured. Thus, for
3459a logger named ``log01`` in the ``[loggers]`` section, the relevant
3460configuration details are held in a section ``[logger_log01]``. Similarly, a
3461handler called ``hand01`` in the ``[handlers]`` section will have its
3462configuration held in a section called ``[handler_hand01]``, while a formatter
3463called ``form01`` in the ``[formatters]`` section will have its configuration
3464specified in a section called ``[formatter_form01]``. The root logger
3465configuration must be specified in a section called ``[logger_root]``.
Georg Brandl116aa622007-08-15 14:28:22 +00003466
3467Examples of these sections in the file are given below. ::
3468
3469 [loggers]
3470 keys=root,log02,log03,log04,log05,log06,log07
3471
3472 [handlers]
3473 keys=hand01,hand02,hand03,hand04,hand05,hand06,hand07,hand08,hand09
3474
3475 [formatters]
3476 keys=form01,form02,form03,form04,form05,form06,form07,form08,form09
3477
3478The root logger must specify a level and a list of handlers. An example of a
3479root logger section is given below. ::
3480
3481 [logger_root]
3482 level=NOTSET
3483 handlers=hand01
3484
3485The ``level`` entry can be one of ``DEBUG, INFO, WARNING, ERROR, CRITICAL`` or
3486``NOTSET``. For the root logger only, ``NOTSET`` means that all messages will be
3487logged. Level values are :func:`eval`\ uated in the context of the ``logging``
3488package's namespace.
3489
3490The ``handlers`` entry is a comma-separated list of handler names, which must
3491appear in the ``[handlers]`` section. These names must appear in the
3492``[handlers]`` section and have corresponding sections in the configuration
3493file.
3494
3495For loggers other than the root logger, some additional information is required.
3496This is illustrated by the following example. ::
3497
3498 [logger_parser]
3499 level=DEBUG
3500 handlers=hand01
3501 propagate=1
3502 qualname=compiler.parser
3503
3504The ``level`` and ``handlers`` entries are interpreted as for the root logger,
3505except that if a non-root logger's level is specified as ``NOTSET``, the system
3506consults loggers higher up the hierarchy to determine the effective level of the
3507logger. The ``propagate`` entry is set to 1 to indicate that messages must
3508propagate to handlers higher up the logger hierarchy from this logger, or 0 to
3509indicate that messages are **not** propagated to handlers up the hierarchy. The
3510``qualname`` entry is the hierarchical channel name of the logger, that is to
3511say the name used by the application to get the logger.
3512
3513Sections which specify handler configuration are exemplified by the following.
3514::
3515
3516 [handler_hand01]
3517 class=StreamHandler
3518 level=NOTSET
3519 formatter=form01
3520 args=(sys.stdout,)
3521
3522The ``class`` entry indicates the handler's class (as determined by :func:`eval`
3523in the ``logging`` package's namespace). The ``level`` is interpreted as for
3524loggers, and ``NOTSET`` is taken to mean "log everything".
3525
3526The ``formatter`` entry indicates the key name of the formatter for this
3527handler. If blank, a default formatter (``logging._defaultFormatter``) is used.
3528If a name is specified, it must appear in the ``[formatters]`` section and have
3529a corresponding section in the configuration file.
3530
3531The ``args`` entry, when :func:`eval`\ uated in the context of the ``logging``
3532package's namespace, is the list of arguments to the constructor for the handler
3533class. Refer to the constructors for the relevant handlers, or to the examples
3534below, to see how typical entries are constructed. ::
3535
3536 [handler_hand02]
3537 class=FileHandler
3538 level=DEBUG
3539 formatter=form02
3540 args=('python.log', 'w')
3541
3542 [handler_hand03]
3543 class=handlers.SocketHandler
3544 level=INFO
3545 formatter=form03
3546 args=('localhost', handlers.DEFAULT_TCP_LOGGING_PORT)
3547
3548 [handler_hand04]
3549 class=handlers.DatagramHandler
3550 level=WARN
3551 formatter=form04
3552 args=('localhost', handlers.DEFAULT_UDP_LOGGING_PORT)
3553
3554 [handler_hand05]
3555 class=handlers.SysLogHandler
3556 level=ERROR
3557 formatter=form05
3558 args=(('localhost', handlers.SYSLOG_UDP_PORT), handlers.SysLogHandler.LOG_USER)
3559
3560 [handler_hand06]
3561 class=handlers.NTEventLogHandler
3562 level=CRITICAL
3563 formatter=form06
3564 args=('Python Application', '', 'Application')
3565
3566 [handler_hand07]
3567 class=handlers.SMTPHandler
3568 level=WARN
3569 formatter=form07
3570 args=('localhost', 'from@abc', ['user1@abc', 'user2@xyz'], 'Logger Subject')
3571
3572 [handler_hand08]
3573 class=handlers.MemoryHandler
3574 level=NOTSET
3575 formatter=form08
3576 target=
3577 args=(10, ERROR)
3578
3579 [handler_hand09]
3580 class=handlers.HTTPHandler
3581 level=NOTSET
3582 formatter=form09
3583 args=('localhost:9022', '/log', 'GET')
3584
3585Sections which specify formatter configuration are typified by the following. ::
3586
3587 [formatter_form01]
3588 format=F1 %(asctime)s %(levelname)s %(message)s
3589 datefmt=
3590 class=logging.Formatter
3591
3592The ``format`` entry is the overall format string, and the ``datefmt`` entry is
Christian Heimes5b5e81c2007-12-31 16:14:33 +00003593the :func:`strftime`\ -compatible date/time format string. If empty, the
3594package substitutes ISO8601 format date/times, which is almost equivalent to
3595specifying the date format string ``"%Y-%m-%d %H:%M:%S"``. The ISO8601 format
3596also specifies milliseconds, which are appended to the result of using the above
3597format string, with a comma separator. An example time in ISO8601 format is
3598``2003-01-23 00:29:50,411``.
Georg Brandl116aa622007-08-15 14:28:22 +00003599
3600The ``class`` entry is optional. It indicates the name of the formatter's class
3601(as a dotted module and class name.) This option is useful for instantiating a
3602:class:`Formatter` subclass. Subclasses of :class:`Formatter` can present
3603exception tracebacks in an expanded or condensed format.
3604
Christian Heimes8b0facf2007-12-04 19:30:01 +00003605
3606Configuration server example
3607^^^^^^^^^^^^^^^^^^^^^^^^^^^^
3608
3609Here is an example of a module using the logging configuration server::
3610
3611 import logging
3612 import logging.config
3613 import time
3614 import os
3615
3616 # read initial config file
3617 logging.config.fileConfig("logging.conf")
3618
3619 # create and start listener on port 9999
3620 t = logging.config.listen(9999)
3621 t.start()
3622
3623 logger = logging.getLogger("simpleExample")
3624
3625 try:
3626 # loop through logging calls to see the difference
3627 # new configurations make, until Ctrl+C is pressed
3628 while True:
3629 logger.debug("debug message")
3630 logger.info("info message")
3631 logger.warn("warn message")
3632 logger.error("error message")
3633 logger.critical("critical message")
3634 time.sleep(5)
3635 except KeyboardInterrupt:
3636 # cleanup
3637 logging.config.stopListening()
3638 t.join()
3639
3640And here is a script that takes a filename and sends that file to the server,
3641properly preceded with the binary-encoded length, as the new logging
3642configuration::
3643
3644 #!/usr/bin/env python
3645 import socket, sys, struct
3646
3647 data_to_send = open(sys.argv[1], "r").read()
3648
3649 HOST = 'localhost'
3650 PORT = 9999
3651 s = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
Georg Brandlf6945182008-02-01 11:56:49 +00003652 print("connecting...")
Christian Heimes8b0facf2007-12-04 19:30:01 +00003653 s.connect((HOST, PORT))
Georg Brandlf6945182008-02-01 11:56:49 +00003654 print("sending config...")
Christian Heimes8b0facf2007-12-04 19:30:01 +00003655 s.send(struct.pack(">L", len(data_to_send)))
3656 s.send(data_to_send)
3657 s.close()
Georg Brandlf6945182008-02-01 11:56:49 +00003658 print("complete")
Christian Heimes8b0facf2007-12-04 19:30:01 +00003659
3660
3661More examples
3662-------------
3663
3664Multiple handlers and formatters
3665^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
3666
3667Loggers are plain Python objects. The :func:`addHandler` method has no minimum
3668or maximum quota for the number of handlers you may add. Sometimes it will be
3669beneficial for an application to log all messages of all severities to a text
3670file while simultaneously logging errors or above to the console. To set this
3671up, simply configure the appropriate handlers. The logging calls in the
3672application code will remain unchanged. Here is a slight modification to the
3673previous simple module-based configuration example::
3674
3675 import logging
3676
3677 logger = logging.getLogger("simple_example")
3678 logger.setLevel(logging.DEBUG)
3679 # create file handler which logs even debug messages
3680 fh = logging.FileHandler("spam.log")
3681 fh.setLevel(logging.DEBUG)
3682 # create console handler with a higher log level
3683 ch = logging.StreamHandler()
3684 ch.setLevel(logging.ERROR)
3685 # create formatter and add it to the handlers
3686 formatter = logging.Formatter("%(asctime)s - %(name)s - %(levelname)s - %(message)s")
3687 ch.setFormatter(formatter)
3688 fh.setFormatter(formatter)
3689 # add the handlers to logger
3690 logger.addHandler(ch)
3691 logger.addHandler(fh)
3692
3693 # "application" code
3694 logger.debug("debug message")
3695 logger.info("info message")
3696 logger.warn("warn message")
3697 logger.error("error message")
3698 logger.critical("critical message")
3699
3700Notice that the "application" code does not care about multiple handlers. All
3701that changed was the addition and configuration of a new handler named *fh*.
3702
3703The ability to create new handlers with higher- or lower-severity filters can be
3704very helpful when writing and testing an application. Instead of using many
3705``print`` statements for debugging, use ``logger.debug``: Unlike the print
3706statements, which you will have to delete or comment out later, the logger.debug
3707statements can remain intact in the source code and remain dormant until you
3708need them again. At that time, the only change that needs to happen is to
3709modify the severity level of the logger and/or handler to debug.
3710
3711
3712Using logging in multiple modules
3713^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
3714
3715It was mentioned above that multiple calls to
3716``logging.getLogger('someLogger')`` return a reference to the same logger
3717object. This is true not only within the same module, but also across modules
3718as long as it is in the same Python interpreter process. It is true for
3719references to the same object; additionally, application code can define and
3720configure a parent logger in one module and create (but not configure) a child
3721logger in a separate module, and all logger calls to the child will pass up to
3722the parent. Here is a main module::
3723
3724 import logging
3725 import auxiliary_module
3726
3727 # create logger with "spam_application"
3728 logger = logging.getLogger("spam_application")
3729 logger.setLevel(logging.DEBUG)
3730 # create file handler which logs even debug messages
3731 fh = logging.FileHandler("spam.log")
3732 fh.setLevel(logging.DEBUG)
3733 # create console handler with a higher log level
3734 ch = logging.StreamHandler()
3735 ch.setLevel(logging.ERROR)
3736 # create formatter and add it to the handlers
3737 formatter = logging.Formatter("%(asctime)s - %(name)s - %(levelname)s - %(message)s")
3738 fh.setFormatter(formatter)
3739 ch.setFormatter(formatter)
3740 # add the handlers to the logger
3741 logger.addHandler(fh)
3742 logger.addHandler(ch)
3743
3744 logger.info("creating an instance of auxiliary_module.Auxiliary")
3745 a = auxiliary_module.Auxiliary()
3746 logger.info("created an instance of auxiliary_module.Auxiliary")
3747 logger.info("calling auxiliary_module.Auxiliary.do_something")
3748 a.do_something()
3749 logger.info("finished auxiliary_module.Auxiliary.do_something")
3750 logger.info("calling auxiliary_module.some_function()")
3751 auxiliary_module.some_function()
3752 logger.info("done with auxiliary_module.some_function()")
3753
3754Here is the auxiliary module::
3755
3756 import logging
3757
3758 # create logger
3759 module_logger = logging.getLogger("spam_application.auxiliary")
3760
3761 class Auxiliary:
3762 def __init__(self):
3763 self.logger = logging.getLogger("spam_application.auxiliary.Auxiliary")
3764 self.logger.info("creating an instance of Auxiliary")
3765 def do_something(self):
3766 self.logger.info("doing something")
3767 a = 1 + 1
3768 self.logger.info("done doing something")
3769
3770 def some_function():
3771 module_logger.info("received a call to \"some_function\"")
3772
3773The output looks like this::
3774
Christian Heimes043d6f62008-01-07 17:19:16 +00003775 2005-03-23 23:47:11,663 - spam_application - INFO -
Christian Heimes8b0facf2007-12-04 19:30:01 +00003776 creating an instance of auxiliary_module.Auxiliary
Christian Heimes043d6f62008-01-07 17:19:16 +00003777 2005-03-23 23:47:11,665 - spam_application.auxiliary.Auxiliary - INFO -
Christian Heimes8b0facf2007-12-04 19:30:01 +00003778 creating an instance of Auxiliary
Christian Heimes043d6f62008-01-07 17:19:16 +00003779 2005-03-23 23:47:11,665 - spam_application - INFO -
Christian Heimes8b0facf2007-12-04 19:30:01 +00003780 created an instance of auxiliary_module.Auxiliary
Christian Heimes043d6f62008-01-07 17:19:16 +00003781 2005-03-23 23:47:11,668 - spam_application - INFO -
Christian Heimes8b0facf2007-12-04 19:30:01 +00003782 calling auxiliary_module.Auxiliary.do_something
Christian Heimes043d6f62008-01-07 17:19:16 +00003783 2005-03-23 23:47:11,668 - spam_application.auxiliary.Auxiliary - INFO -
Christian Heimes8b0facf2007-12-04 19:30:01 +00003784 doing something
Christian Heimes043d6f62008-01-07 17:19:16 +00003785 2005-03-23 23:47:11,669 - spam_application.auxiliary.Auxiliary - INFO -
Christian Heimes8b0facf2007-12-04 19:30:01 +00003786 done doing something
Christian Heimes043d6f62008-01-07 17:19:16 +00003787 2005-03-23 23:47:11,670 - spam_application - INFO -
Christian Heimes8b0facf2007-12-04 19:30:01 +00003788 finished auxiliary_module.Auxiliary.do_something
Christian Heimes043d6f62008-01-07 17:19:16 +00003789 2005-03-23 23:47:11,671 - spam_application - INFO -
Christian Heimes8b0facf2007-12-04 19:30:01 +00003790 calling auxiliary_module.some_function()
Christian Heimes043d6f62008-01-07 17:19:16 +00003791 2005-03-23 23:47:11,672 - spam_application.auxiliary - INFO -
Christian Heimes8b0facf2007-12-04 19:30:01 +00003792 received a call to "some_function"
Christian Heimes043d6f62008-01-07 17:19:16 +00003793 2005-03-23 23:47:11,673 - spam_application - INFO -
Christian Heimes8b0facf2007-12-04 19:30:01 +00003794 done with auxiliary_module.some_function()
3795