blob: 689c4224b36a6e230bf39c0c39ea1075af8f29bc [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
Georg Brandl67b21b72010-08-17 15:07:14 +0000530 The :class:`NullHandler` class was not present in previous versions, but is
531 now included, so that it need not be defined in library code.
Georg Brandlf9734072008-12-07 15:30:06 +0000532
533
Christian Heimes8b0facf2007-12-04 19:30:01 +0000534
535Logging Levels
536--------------
537
Georg Brandl116aa622007-08-15 14:28:22 +0000538The numeric values of logging levels are given in the following table. These are
539primarily of interest if you want to define your own levels, and need them to
540have specific values relative to the predefined levels. If you define a level
541with the same numeric value, it overwrites the predefined value; the predefined
542name is lost.
543
544+--------------+---------------+
545| Level | Numeric value |
546+==============+===============+
547| ``CRITICAL`` | 50 |
548+--------------+---------------+
549| ``ERROR`` | 40 |
550+--------------+---------------+
551| ``WARNING`` | 30 |
552+--------------+---------------+
553| ``INFO`` | 20 |
554+--------------+---------------+
555| ``DEBUG`` | 10 |
556+--------------+---------------+
557| ``NOTSET`` | 0 |
558+--------------+---------------+
559
560Levels can also be associated with loggers, being set either by the developer or
561through loading a saved logging configuration. When a logging method is called
562on a logger, the logger compares its own level with the level associated with
563the method call. If the logger's level is higher than the method call's, no
564logging message is actually generated. This is the basic mechanism controlling
565the verbosity of logging output.
566
567Logging messages are encoded as instances of the :class:`LogRecord` class. When
568a logger decides to actually log an event, a :class:`LogRecord` instance is
569created from the logging message.
570
571Logging messages are subjected to a dispatch mechanism through the use of
572:dfn:`handlers`, which are instances of subclasses of the :class:`Handler`
573class. Handlers are responsible for ensuring that a logged message (in the form
574of a :class:`LogRecord`) ends up in a particular location (or set of locations)
575which is useful for the target audience for that message (such as end users,
576support desk staff, system administrators, developers). Handlers are passed
577:class:`LogRecord` instances intended for particular destinations. Each logger
578can have zero, one or more handlers associated with it (via the
579:meth:`addHandler` method of :class:`Logger`). In addition to any handlers
580directly associated with a logger, *all handlers associated with all ancestors
Benjamin Peterson22005fc2010-04-11 16:25:06 +0000581of the logger* are called to dispatch the message (unless the *propagate* flag
582for a logger is set to a false value, at which point the passing to ancestor
583handlers stops).
Georg Brandl116aa622007-08-15 14:28:22 +0000584
585Just as for loggers, handlers can have levels associated with them. A handler's
586level acts as a filter in the same way as a logger's level does. If a handler
587decides to actually dispatch an event, the :meth:`emit` method is used to send
588the message to its destination. Most user-defined subclasses of :class:`Handler`
589will need to override this :meth:`emit`.
590
Benjamin Peterson058e31e2009-01-16 03:54:08 +0000591Useful Handlers
592---------------
593
Georg Brandl116aa622007-08-15 14:28:22 +0000594In addition to the base :class:`Handler` class, many useful subclasses are
595provided:
596
597#. :class:`StreamHandler` instances send error messages to streams (file-like
598 objects).
599
600#. :class:`FileHandler` instances send error messages to disk files.
601
Benjamin Peterson058e31e2009-01-16 03:54:08 +0000602.. module:: logging.handlers
Vinay Sajip30bf1222009-01-10 19:23:34 +0000603
Benjamin Peterson058e31e2009-01-16 03:54:08 +0000604#. :class:`BaseRotatingHandler` is the base class for handlers that
605 rotate log files at a certain point. It is not meant to be instantiated
606 directly. Instead, use :class:`RotatingFileHandler` or
607 :class:`TimedRotatingFileHandler`.
Georg Brandl116aa622007-08-15 14:28:22 +0000608
Benjamin Peterson058e31e2009-01-16 03:54:08 +0000609#. :class:`RotatingFileHandler` instances send error messages to disk
610 files, with support for maximum log file sizes and log file rotation.
Georg Brandl116aa622007-08-15 14:28:22 +0000611
Benjamin Peterson058e31e2009-01-16 03:54:08 +0000612#. :class:`TimedRotatingFileHandler` instances send error messages to
613 disk files, rotating the log file at certain timed intervals.
Georg Brandl116aa622007-08-15 14:28:22 +0000614
Benjamin Peterson058e31e2009-01-16 03:54:08 +0000615#. :class:`SocketHandler` instances send error messages to TCP/IP
616 sockets.
Georg Brandl116aa622007-08-15 14:28:22 +0000617
Benjamin Peterson058e31e2009-01-16 03:54:08 +0000618#. :class:`DatagramHandler` instances send error messages to UDP
619 sockets.
Georg Brandl116aa622007-08-15 14:28:22 +0000620
Benjamin Peterson058e31e2009-01-16 03:54:08 +0000621#. :class:`SMTPHandler` instances send error messages to a designated
622 email address.
Georg Brandl116aa622007-08-15 14:28:22 +0000623
Benjamin Peterson058e31e2009-01-16 03:54:08 +0000624#. :class:`SysLogHandler` instances send error messages to a Unix
625 syslog daemon, possibly on a remote machine.
Georg Brandl116aa622007-08-15 14:28:22 +0000626
Benjamin Peterson058e31e2009-01-16 03:54:08 +0000627#. :class:`NTEventLogHandler` instances send error messages to a
628 Windows NT/2000/XP event log.
Georg Brandl116aa622007-08-15 14:28:22 +0000629
Benjamin Peterson058e31e2009-01-16 03:54:08 +0000630#. :class:`MemoryHandler` instances send error messages to a buffer
631 in memory, which is flushed whenever specific criteria are met.
Georg Brandl116aa622007-08-15 14:28:22 +0000632
Benjamin Peterson058e31e2009-01-16 03:54:08 +0000633#. :class:`HTTPHandler` instances send error messages to an HTTP
634 server using either ``GET`` or ``POST`` semantics.
Georg Brandl116aa622007-08-15 14:28:22 +0000635
Benjamin Peterson058e31e2009-01-16 03:54:08 +0000636#. :class:`WatchedFileHandler` instances watch the file they are
637 logging to. If the file changes, it is closed and reopened using the file
638 name. This handler is only useful on Unix-like systems; Windows does not
639 support the underlying mechanism used.
Vinay Sajip30bf1222009-01-10 19:23:34 +0000640
641.. currentmodule:: logging
642
Georg Brandlf9734072008-12-07 15:30:06 +0000643#. :class:`NullHandler` instances do nothing with error messages. They are used
644 by library developers who want to use logging, but want to avoid the "No
645 handlers could be found for logger XXX" message which can be displayed if
Vinay Sajip26a2d5e2009-01-10 13:37:26 +0000646 the library user has not configured logging. See :ref:`library-config` for
647 more information.
Georg Brandlf9734072008-12-07 15:30:06 +0000648
649.. versionadded:: 3.1
650
651The :class:`NullHandler` class was not present in previous versions.
652
Vinay Sajipa17775f2008-12-30 07:32:59 +0000653The :class:`NullHandler`, :class:`StreamHandler` and :class:`FileHandler`
654classes are defined in the core logging package. The other handlers are
655defined in a sub- module, :mod:`logging.handlers`. (There is also another
656sub-module, :mod:`logging.config`, for configuration functionality.)
Georg Brandl116aa622007-08-15 14:28:22 +0000657
658Logged messages are formatted for presentation through instances of the
659:class:`Formatter` class. They are initialized with a format string suitable for
660use with the % operator and a dictionary.
661
662For formatting multiple messages in a batch, instances of
663:class:`BufferingFormatter` can be used. In addition to the format string (which
664is applied to each message in the batch), there is provision for header and
665trailer format strings.
666
667When filtering based on logger level and/or handler level is not enough,
668instances of :class:`Filter` can be added to both :class:`Logger` and
669:class:`Handler` instances (through their :meth:`addFilter` method). Before
670deciding to process a message further, both loggers and handlers consult all
671their filters for permission. If any filter returns a false value, the message
672is not processed further.
673
674The basic :class:`Filter` functionality allows filtering by specific logger
675name. If this feature is used, messages sent to the named logger and its
676children are allowed through the filter, and all others dropped.
677
Benjamin Peterson058e31e2009-01-16 03:54:08 +0000678Module-Level Functions
679----------------------
680
Georg Brandl116aa622007-08-15 14:28:22 +0000681In addition to the classes described above, there are a number of module- level
682functions.
683
684
Georg Brandlcd7f32b2009-06-08 09:13:45 +0000685.. function:: getLogger(name=None)
Georg Brandl116aa622007-08-15 14:28:22 +0000686
Georg Brandlcd7f32b2009-06-08 09:13:45 +0000687 Return a logger with the specified name or, if name is ``None``, return a
Georg Brandl116aa622007-08-15 14:28:22 +0000688 logger which is the root logger of the hierarchy. If specified, the name is
689 typically a dot-separated hierarchical name like *"a"*, *"a.b"* or *"a.b.c.d"*.
690 Choice of these names is entirely up to the developer who is using logging.
691
692 All calls to this function with a given name return the same logger instance.
693 This means that logger instances never need to be passed between different parts
694 of an application.
695
696
697.. function:: getLoggerClass()
698
699 Return either the standard :class:`Logger` class, or the last class passed to
700 :func:`setLoggerClass`. This function may be called from within a new class
701 definition, to ensure that installing a customised :class:`Logger` class will
702 not undo customisations already applied by other code. For example::
703
704 class MyLogger(logging.getLoggerClass()):
705 # ... override behaviour here
706
707
Georg Brandlcd7f32b2009-06-08 09:13:45 +0000708.. function:: debug(msg, *args, **kwargs)
Georg Brandl116aa622007-08-15 14:28:22 +0000709
710 Logs a message with level :const:`DEBUG` on the root logger. The *msg* is the
711 message format string, and the *args* are the arguments which are merged into
712 *msg* using the string formatting operator. (Note that this means that you can
713 use keywords in the format string, together with a single dictionary argument.)
714
715 There are two keyword arguments in *kwargs* which are inspected: *exc_info*
716 which, if it does not evaluate as false, causes exception information to be
717 added to the logging message. If an exception tuple (in the format returned by
718 :func:`sys.exc_info`) is provided, it is used; otherwise, :func:`sys.exc_info`
719 is called to get the exception information.
720
721 The other optional keyword argument is *extra* which can be used to pass a
722 dictionary which is used to populate the __dict__ of the LogRecord created for
723 the logging event with user-defined attributes. These custom attributes can then
724 be used as you like. For example, they could be incorporated into logged
725 messages. For example::
726
727 FORMAT = "%(asctime)-15s %(clientip)s %(user)-8s %(message)s"
728 logging.basicConfig(format=FORMAT)
729 d = {'clientip': '192.168.0.1', 'user': 'fbloggs'}
730 logging.warning("Protocol problem: %s", "connection reset", extra=d)
731
Georg Brandlcd7f32b2009-06-08 09:13:45 +0000732 would print something like ::
Georg Brandl116aa622007-08-15 14:28:22 +0000733
734 2006-02-08 22:20:02,165 192.168.0.1 fbloggs Protocol problem: connection reset
735
736 The keys in the dictionary passed in *extra* should not clash with the keys used
737 by the logging system. (See the :class:`Formatter` documentation for more
738 information on which keys are used by the logging system.)
739
740 If you choose to use these attributes in logged messages, you need to exercise
741 some care. In the above example, for instance, the :class:`Formatter` has been
742 set up with a format string which expects 'clientip' and 'user' in the attribute
743 dictionary of the LogRecord. If these are missing, the message will not be
744 logged because a string formatting exception will occur. So in this case, you
745 always need to pass the *extra* dictionary with these keys.
746
747 While this might be annoying, this feature is intended for use in specialized
748 circumstances, such as multi-threaded servers where the same code executes in
749 many contexts, and interesting conditions which arise are dependent on this
750 context (such as remote client IP address and authenticated user name, in the
751 above example). In such circumstances, it is likely that specialized
752 :class:`Formatter`\ s would be used with particular :class:`Handler`\ s.
753
Georg Brandl116aa622007-08-15 14:28:22 +0000754
Georg Brandlcd7f32b2009-06-08 09:13:45 +0000755.. function:: info(msg, *args, **kwargs)
Georg Brandl116aa622007-08-15 14:28:22 +0000756
757 Logs a message with level :const:`INFO` on the root logger. The arguments are
758 interpreted as for :func:`debug`.
759
760
Georg Brandlcd7f32b2009-06-08 09:13:45 +0000761.. function:: warning(msg, *args, **kwargs)
Georg Brandl116aa622007-08-15 14:28:22 +0000762
763 Logs a message with level :const:`WARNING` on the root logger. The arguments are
764 interpreted as for :func:`debug`.
765
766
Georg Brandlcd7f32b2009-06-08 09:13:45 +0000767.. function:: error(msg, *args, **kwargs)
Georg Brandl116aa622007-08-15 14:28:22 +0000768
769 Logs a message with level :const:`ERROR` on the root logger. The arguments are
770 interpreted as for :func:`debug`.
771
772
Georg Brandlcd7f32b2009-06-08 09:13:45 +0000773.. function:: critical(msg, *args, **kwargs)
Georg Brandl116aa622007-08-15 14:28:22 +0000774
775 Logs a message with level :const:`CRITICAL` on the root logger. The arguments
776 are interpreted as for :func:`debug`.
777
778
Georg Brandlcd7f32b2009-06-08 09:13:45 +0000779.. function:: exception(msg, *args)
Georg Brandl116aa622007-08-15 14:28:22 +0000780
781 Logs a message with level :const:`ERROR` on the root logger. The arguments are
782 interpreted as for :func:`debug`. Exception info is added to the logging
783 message. This function should only be called from an exception handler.
784
785
Georg Brandlcd7f32b2009-06-08 09:13:45 +0000786.. function:: log(level, msg, *args, **kwargs)
Georg Brandl116aa622007-08-15 14:28:22 +0000787
788 Logs a message with level *level* on the root logger. The other arguments are
789 interpreted as for :func:`debug`.
790
791
792.. function:: disable(lvl)
793
794 Provides an overriding level *lvl* for all loggers which takes precedence over
795 the logger's own level. When the need arises to temporarily throttle logging
Benjamin Peterson886af962010-03-21 23:13:07 +0000796 output down across the whole application, this function can be useful. Its
797 effect is to disable all logging calls of severity *lvl* and below, so that
798 if you call it with a value of INFO, then all INFO and DEBUG events would be
799 discarded, whereas those of severity WARNING and above would be processed
800 according to the logger's effective level.
Georg Brandl116aa622007-08-15 14:28:22 +0000801
802
803.. function:: addLevelName(lvl, levelName)
804
805 Associates level *lvl* with text *levelName* in an internal dictionary, which is
806 used to map numeric levels to a textual representation, for example when a
807 :class:`Formatter` formats a message. This function can also be used to define
808 your own levels. The only constraints are that all levels used must be
809 registered using this function, levels should be positive integers and they
810 should increase in increasing order of severity.
811
812
813.. function:: getLevelName(lvl)
814
815 Returns the textual representation of logging level *lvl*. If the level is one
816 of the predefined levels :const:`CRITICAL`, :const:`ERROR`, :const:`WARNING`,
817 :const:`INFO` or :const:`DEBUG` then you get the corresponding string. If you
818 have associated levels with names using :func:`addLevelName` then the name you
819 have associated with *lvl* is returned. If a numeric value corresponding to one
820 of the defined levels is passed in, the corresponding string representation is
821 returned. Otherwise, the string "Level %s" % lvl is returned.
822
823
824.. function:: makeLogRecord(attrdict)
825
826 Creates and returns a new :class:`LogRecord` instance whose attributes are
827 defined by *attrdict*. This function is useful for taking a pickled
828 :class:`LogRecord` attribute dictionary, sent over a socket, and reconstituting
829 it as a :class:`LogRecord` instance at the receiving end.
830
831
Georg Brandlcd7f32b2009-06-08 09:13:45 +0000832.. function:: basicConfig(**kwargs)
Georg Brandl116aa622007-08-15 14:28:22 +0000833
834 Does basic configuration for the logging system by creating a
835 :class:`StreamHandler` with a default :class:`Formatter` and adding it to the
Vinay Sajipcbabd7e2009-10-10 20:32:36 +0000836 root logger. The functions :func:`debug`, :func:`info`, :func:`warning`,
Georg Brandl116aa622007-08-15 14:28:22 +0000837 :func:`error` and :func:`critical` will call :func:`basicConfig` automatically
838 if no handlers are defined for the root logger.
839
Vinay Sajipcbabd7e2009-10-10 20:32:36 +0000840 This function does nothing if the root logger already has handlers
841 configured for it.
842
Georg Brandl116aa622007-08-15 14:28:22 +0000843 The following keyword arguments are supported.
844
845 +--------------+---------------------------------------------+
846 | Format | Description |
847 +==============+=============================================+
848 | ``filename`` | Specifies that a FileHandler be created, |
849 | | using the specified filename, rather than a |
850 | | StreamHandler. |
851 +--------------+---------------------------------------------+
852 | ``filemode`` | Specifies the mode to open the file, if |
853 | | filename is specified (if filemode is |
854 | | unspecified, it defaults to 'a'). |
855 +--------------+---------------------------------------------+
856 | ``format`` | Use the specified format string for the |
857 | | handler. |
858 +--------------+---------------------------------------------+
859 | ``datefmt`` | Use the specified date/time format. |
860 +--------------+---------------------------------------------+
861 | ``level`` | Set the root logger level to the specified |
862 | | level. |
863 +--------------+---------------------------------------------+
864 | ``stream`` | Use the specified stream to initialize the |
865 | | StreamHandler. Note that this argument is |
866 | | incompatible with 'filename' - if both are |
867 | | present, 'stream' is ignored. |
868 +--------------+---------------------------------------------+
869
870
871.. function:: shutdown()
872
873 Informs the logging system to perform an orderly shutdown by flushing and
Christian Heimesb186d002008-03-18 15:15:01 +0000874 closing all handlers. This should be called at application exit and no
875 further use of the logging system should be made after this call.
Georg Brandl116aa622007-08-15 14:28:22 +0000876
877
878.. function:: setLoggerClass(klass)
879
880 Tells the logging system to use the class *klass* when instantiating a logger.
881 The class should define :meth:`__init__` such that only a name argument is
882 required, and the :meth:`__init__` should call :meth:`Logger.__init__`. This
883 function is typically called before any loggers are instantiated by applications
884 which need to use custom logger behavior.
885
886
887.. seealso::
888
889 :pep:`282` - A Logging System
890 The proposal which described this feature for inclusion in the Python standard
891 library.
892
Christian Heimes255f53b2007-12-08 15:33:56 +0000893 `Original Python logging package <http://www.red-dove.com/python_logging.html>`_
Georg Brandl116aa622007-08-15 14:28:22 +0000894 This is the original source for the :mod:`logging` package. The version of the
895 package available from this site is suitable for use with Python 1.5.2, 2.1.x
896 and 2.2.x, which do not include the :mod:`logging` package in the standard
897 library.
898
899
900Logger Objects
901--------------
902
903Loggers have the following attributes and methods. Note that Loggers are never
904instantiated directly, but always through the module-level function
905``logging.getLogger(name)``.
906
907
908.. attribute:: Logger.propagate
909
910 If this evaluates to false, logging messages are not passed by this logger or by
Benjamin Peterson22005fc2010-04-11 16:25:06 +0000911 its child loggers to the handlers of higher level (ancestor) loggers. The
912 constructor sets this attribute to 1.
Georg Brandl116aa622007-08-15 14:28:22 +0000913
914
915.. method:: Logger.setLevel(lvl)
916
917 Sets the threshold for this logger to *lvl*. Logging messages which are less
918 severe than *lvl* will be ignored. When a logger is created, the level is set to
919 :const:`NOTSET` (which causes all messages to be processed when the logger is
920 the root logger, or delegation to the parent when the logger is a non-root
921 logger). Note that the root logger is created with level :const:`WARNING`.
922
923 The term "delegation to the parent" means that if a logger has a level of
924 NOTSET, its chain of ancestor loggers is traversed until either an ancestor with
925 a level other than NOTSET is found, or the root is reached.
926
927 If an ancestor is found with a level other than NOTSET, then that ancestor's
928 level is treated as the effective level of the logger where the ancestor search
929 began, and is used to determine how a logging event is handled.
930
931 If the root is reached, and it has a level of NOTSET, then all messages will be
932 processed. Otherwise, the root's level will be used as the effective level.
933
934
935.. method:: Logger.isEnabledFor(lvl)
936
937 Indicates if a message of severity *lvl* would be processed by this logger.
938 This method checks first the module-level level set by
939 ``logging.disable(lvl)`` and then the logger's effective level as determined
940 by :meth:`getEffectiveLevel`.
941
942
943.. method:: Logger.getEffectiveLevel()
944
945 Indicates the effective level for this logger. If a value other than
946 :const:`NOTSET` has been set using :meth:`setLevel`, it is returned. Otherwise,
947 the hierarchy is traversed towards the root until a value other than
948 :const:`NOTSET` is found, and that value is returned.
949
950
Benjamin Peterson22005fc2010-04-11 16:25:06 +0000951.. method:: Logger.getChild(suffix)
952
953 Returns a logger which is a descendant to this logger, as determined by the suffix.
954 Thus, ``logging.getLogger('abc').getChild('def.ghi')`` would return the same
955 logger as would be returned by ``logging.getLogger('abc.def.ghi')``. This is a
956 convenience method, useful when the parent logger is named using e.g. ``__name__``
957 rather than a literal string.
958
959 .. versionadded:: 3.2
960
Georg Brandl67b21b72010-08-17 15:07:14 +0000961
Georg Brandlcd7f32b2009-06-08 09:13:45 +0000962.. method:: Logger.debug(msg, *args, **kwargs)
Georg Brandl116aa622007-08-15 14:28:22 +0000963
964 Logs a message with level :const:`DEBUG` on this logger. The *msg* is the
965 message format string, and the *args* are the arguments which are merged into
966 *msg* using the string formatting operator. (Note that this means that you can
967 use keywords in the format string, together with a single dictionary argument.)
968
969 There are two keyword arguments in *kwargs* which are inspected: *exc_info*
970 which, if it does not evaluate as false, causes exception information to be
971 added to the logging message. If an exception tuple (in the format returned by
972 :func:`sys.exc_info`) is provided, it is used; otherwise, :func:`sys.exc_info`
973 is called to get the exception information.
974
975 The other optional keyword argument is *extra* which can be used to pass a
976 dictionary which is used to populate the __dict__ of the LogRecord created for
977 the logging event with user-defined attributes. These custom attributes can then
978 be used as you like. For example, they could be incorporated into logged
979 messages. For example::
980
981 FORMAT = "%(asctime)-15s %(clientip)s %(user)-8s %(message)s"
982 logging.basicConfig(format=FORMAT)
Georg Brandl9afde1c2007-11-01 20:32:30 +0000983 d = { 'clientip' : '192.168.0.1', 'user' : 'fbloggs' }
Georg Brandl116aa622007-08-15 14:28:22 +0000984 logger = logging.getLogger("tcpserver")
985 logger.warning("Protocol problem: %s", "connection reset", extra=d)
986
987 would print something like ::
988
989 2006-02-08 22:20:02,165 192.168.0.1 fbloggs Protocol problem: connection reset
990
991 The keys in the dictionary passed in *extra* should not clash with the keys used
992 by the logging system. (See the :class:`Formatter` documentation for more
993 information on which keys are used by the logging system.)
994
995 If you choose to use these attributes in logged messages, you need to exercise
996 some care. In the above example, for instance, the :class:`Formatter` has been
997 set up with a format string which expects 'clientip' and 'user' in the attribute
998 dictionary of the LogRecord. If these are missing, the message will not be
999 logged because a string formatting exception will occur. So in this case, you
1000 always need to pass the *extra* dictionary with these keys.
1001
1002 While this might be annoying, this feature is intended for use in specialized
1003 circumstances, such as multi-threaded servers where the same code executes in
1004 many contexts, and interesting conditions which arise are dependent on this
1005 context (such as remote client IP address and authenticated user name, in the
1006 above example). In such circumstances, it is likely that specialized
1007 :class:`Formatter`\ s would be used with particular :class:`Handler`\ s.
1008
Georg Brandl116aa622007-08-15 14:28:22 +00001009
Georg Brandlcd7f32b2009-06-08 09:13:45 +00001010.. method:: Logger.info(msg, *args, **kwargs)
Georg Brandl116aa622007-08-15 14:28:22 +00001011
1012 Logs a message with level :const:`INFO` on this logger. The arguments are
1013 interpreted as for :meth:`debug`.
1014
1015
Georg Brandlcd7f32b2009-06-08 09:13:45 +00001016.. method:: Logger.warning(msg, *args, **kwargs)
Georg Brandl116aa622007-08-15 14:28:22 +00001017
1018 Logs a message with level :const:`WARNING` on this logger. The arguments are
1019 interpreted as for :meth:`debug`.
1020
1021
Georg Brandlcd7f32b2009-06-08 09:13:45 +00001022.. method:: Logger.error(msg, *args, **kwargs)
Georg Brandl116aa622007-08-15 14:28:22 +00001023
1024 Logs a message with level :const:`ERROR` on this logger. The arguments are
1025 interpreted as for :meth:`debug`.
1026
1027
Georg Brandlcd7f32b2009-06-08 09:13:45 +00001028.. method:: Logger.critical(msg, *args, **kwargs)
Georg Brandl116aa622007-08-15 14:28:22 +00001029
1030 Logs a message with level :const:`CRITICAL` on this logger. The arguments are
1031 interpreted as for :meth:`debug`.
1032
1033
Georg Brandlcd7f32b2009-06-08 09:13:45 +00001034.. method:: Logger.log(lvl, msg, *args, **kwargs)
Georg Brandl116aa622007-08-15 14:28:22 +00001035
1036 Logs a message with integer level *lvl* on this logger. The other arguments are
1037 interpreted as for :meth:`debug`.
1038
1039
Georg Brandlcd7f32b2009-06-08 09:13:45 +00001040.. method:: Logger.exception(msg, *args)
Georg Brandl116aa622007-08-15 14:28:22 +00001041
1042 Logs a message with level :const:`ERROR` on this logger. The arguments are
1043 interpreted as for :meth:`debug`. Exception info is added to the logging
1044 message. This method should only be called from an exception handler.
1045
1046
1047.. method:: Logger.addFilter(filt)
1048
1049 Adds the specified filter *filt* to this logger.
1050
1051
1052.. method:: Logger.removeFilter(filt)
1053
1054 Removes the specified filter *filt* from this logger.
1055
1056
1057.. method:: Logger.filter(record)
1058
1059 Applies this logger's filters to the record and returns a true value if the
1060 record is to be processed.
1061
1062
1063.. method:: Logger.addHandler(hdlr)
1064
1065 Adds the specified handler *hdlr* to this logger.
1066
1067
1068.. method:: Logger.removeHandler(hdlr)
1069
1070 Removes the specified handler *hdlr* from this logger.
1071
1072
1073.. method:: Logger.findCaller()
1074
1075 Finds the caller's source filename and line number. Returns the filename, line
1076 number and function name as a 3-element tuple.
1077
Georg Brandl116aa622007-08-15 14:28:22 +00001078
1079.. method:: Logger.handle(record)
1080
1081 Handles a record by passing it to all handlers associated with this logger and
1082 its ancestors (until a false value of *propagate* is found). This method is used
1083 for unpickled records received from a socket, as well as those created locally.
Georg Brandl502d9a52009-07-26 15:02:41 +00001084 Logger-level filtering is applied using :meth:`~Logger.filter`.
Georg Brandl116aa622007-08-15 14:28:22 +00001085
1086
Georg Brandlcd7f32b2009-06-08 09:13:45 +00001087.. method:: Logger.makeRecord(name, lvl, fn, lno, msg, args, exc_info, func=None, extra=None)
Georg Brandl116aa622007-08-15 14:28:22 +00001088
1089 This is a factory method which can be overridden in subclasses to create
1090 specialized :class:`LogRecord` instances.
1091
Georg Brandl116aa622007-08-15 14:28:22 +00001092
1093.. _minimal-example:
1094
1095Basic example
1096-------------
1097
Georg Brandl116aa622007-08-15 14:28:22 +00001098The :mod:`logging` package provides a lot of flexibility, and its configuration
1099can appear daunting. This section demonstrates that simple use of the logging
1100package is possible.
1101
1102The simplest example shows logging to the console::
1103
1104 import logging
1105
1106 logging.debug('A debug message')
1107 logging.info('Some information')
1108 logging.warning('A shot across the bows')
1109
1110If you run the above script, you'll see this::
1111
1112 WARNING:root:A shot across the bows
1113
1114Because no particular logger was specified, the system used the root logger. The
1115debug and info messages didn't appear because by default, the root logger is
1116configured to only handle messages with a severity of WARNING or above. The
1117message format is also a configuration default, as is the output destination of
1118the messages - ``sys.stderr``. The severity level, the message format and
1119destination can be easily changed, as shown in the example below::
1120
1121 import logging
1122
1123 logging.basicConfig(level=logging.DEBUG,
1124 format='%(asctime)s %(levelname)s %(message)s',
Benjamin Petersond7c3ed52010-06-27 22:32:30 +00001125 filename='myapp.log',
Georg Brandl116aa622007-08-15 14:28:22 +00001126 filemode='w')
1127 logging.debug('A debug message')
1128 logging.info('Some information')
1129 logging.warning('A shot across the bows')
1130
1131The :meth:`basicConfig` method is used to change the configuration defaults,
Benjamin Petersond7c3ed52010-06-27 22:32:30 +00001132which results in output (written to ``myapp.log``) which should look
Georg Brandl116aa622007-08-15 14:28:22 +00001133something like the following::
1134
1135 2004-07-02 13:00:08,743 DEBUG A debug message
1136 2004-07-02 13:00:08,743 INFO Some information
1137 2004-07-02 13:00:08,743 WARNING A shot across the bows
1138
1139This time, all messages with a severity of DEBUG or above were handled, and the
1140format of the messages was also changed, and output went to the specified file
1141rather than the console.
1142
Georg Brandl81ac1ce2007-08-31 17:17:17 +00001143.. XXX logging should probably be updated for new string formatting!
Georg Brandl4b491312007-08-31 09:22:56 +00001144
1145Formatting uses the old Python string formatting - see section
1146:ref:`old-string-formatting`. The format string takes the following common
Georg Brandl116aa622007-08-15 14:28:22 +00001147specifiers. For a complete list of specifiers, consult the :class:`Formatter`
1148documentation.
1149
1150+-------------------+-----------------------------------------------+
1151| Format | Description |
1152+===================+===============================================+
1153| ``%(name)s`` | Name of the logger (logging channel). |
1154+-------------------+-----------------------------------------------+
1155| ``%(levelname)s`` | Text logging level for the message |
1156| | (``'DEBUG'``, ``'INFO'``, ``'WARNING'``, |
1157| | ``'ERROR'``, ``'CRITICAL'``). |
1158+-------------------+-----------------------------------------------+
1159| ``%(asctime)s`` | Human-readable time when the |
1160| | :class:`LogRecord` was created. By default |
1161| | this is of the form "2003-07-08 16:49:45,896" |
1162| | (the numbers after the comma are millisecond |
1163| | portion of the time). |
1164+-------------------+-----------------------------------------------+
1165| ``%(message)s`` | The logged message. |
1166+-------------------+-----------------------------------------------+
1167
1168To change the date/time format, you can pass an additional keyword parameter,
1169*datefmt*, as in the following::
1170
1171 import logging
1172
1173 logging.basicConfig(level=logging.DEBUG,
1174 format='%(asctime)s %(levelname)-8s %(message)s',
1175 datefmt='%a, %d %b %Y %H:%M:%S',
1176 filename='/temp/myapp.log',
1177 filemode='w')
1178 logging.debug('A debug message')
1179 logging.info('Some information')
1180 logging.warning('A shot across the bows')
1181
1182which would result in output like ::
1183
1184 Fri, 02 Jul 2004 13:06:18 DEBUG A debug message
1185 Fri, 02 Jul 2004 13:06:18 INFO Some information
1186 Fri, 02 Jul 2004 13:06:18 WARNING A shot across the bows
1187
1188The date format string follows the requirements of :func:`strftime` - see the
1189documentation for the :mod:`time` module.
1190
1191If, instead of sending logging output to the console or a file, you'd rather use
1192a file-like object which you have created separately, you can pass it to
1193:func:`basicConfig` using the *stream* keyword argument. Note that if both
1194*stream* and *filename* keyword arguments are passed, the *stream* argument is
1195ignored.
1196
1197Of course, you can put variable information in your output. To do this, simply
1198have the message be a format string and pass in additional arguments containing
1199the variable information, as in the following example::
1200
1201 import logging
1202
1203 logging.basicConfig(level=logging.DEBUG,
1204 format='%(asctime)s %(levelname)-8s %(message)s',
1205 datefmt='%a, %d %b %Y %H:%M:%S',
1206 filename='/temp/myapp.log',
1207 filemode='w')
1208 logging.error('Pack my box with %d dozen %s', 5, 'liquor jugs')
1209
1210which would result in ::
1211
1212 Wed, 21 Jul 2004 15:35:16 ERROR Pack my box with 5 dozen liquor jugs
1213
1214
1215.. _multiple-destinations:
1216
1217Logging to multiple destinations
1218--------------------------------
1219
1220Let's say you want to log to console and file with different message formats and
1221in differing circumstances. Say you want to log messages with levels of DEBUG
1222and higher to file, and those messages at level INFO and higher to the console.
1223Let's also assume that the file should contain timestamps, but the console
1224messages should not. Here's how you can achieve this::
1225
1226 import logging
1227
1228 # set up logging to file - see previous section for more details
1229 logging.basicConfig(level=logging.DEBUG,
1230 format='%(asctime)s %(name)-12s %(levelname)-8s %(message)s',
1231 datefmt='%m-%d %H:%M',
1232 filename='/temp/myapp.log',
1233 filemode='w')
1234 # define a Handler which writes INFO messages or higher to the sys.stderr
1235 console = logging.StreamHandler()
1236 console.setLevel(logging.INFO)
1237 # set a format which is simpler for console use
1238 formatter = logging.Formatter('%(name)-12s: %(levelname)-8s %(message)s')
1239 # tell the handler to use this format
1240 console.setFormatter(formatter)
1241 # add the handler to the root logger
1242 logging.getLogger('').addHandler(console)
1243
1244 # Now, we can log to the root logger, or any other logger. First the root...
1245 logging.info('Jackdaws love my big sphinx of quartz.')
1246
1247 # Now, define a couple of other loggers which might represent areas in your
1248 # application:
1249
1250 logger1 = logging.getLogger('myapp.area1')
1251 logger2 = logging.getLogger('myapp.area2')
1252
1253 logger1.debug('Quick zephyrs blow, vexing daft Jim.')
1254 logger1.info('How quickly daft jumping zebras vex.')
1255 logger2.warning('Jail zesty vixen who grabbed pay from quack.')
1256 logger2.error('The five boxing wizards jump quickly.')
1257
1258When you run this, on the console you will see ::
1259
1260 root : INFO Jackdaws love my big sphinx of quartz.
1261 myapp.area1 : INFO How quickly daft jumping zebras vex.
1262 myapp.area2 : WARNING Jail zesty vixen who grabbed pay from quack.
1263 myapp.area2 : ERROR The five boxing wizards jump quickly.
1264
1265and in the file you will see something like ::
1266
1267 10-22 22:19 root INFO Jackdaws love my big sphinx of quartz.
1268 10-22 22:19 myapp.area1 DEBUG Quick zephyrs blow, vexing daft Jim.
1269 10-22 22:19 myapp.area1 INFO How quickly daft jumping zebras vex.
1270 10-22 22:19 myapp.area2 WARNING Jail zesty vixen who grabbed pay from quack.
1271 10-22 22:19 myapp.area2 ERROR The five boxing wizards jump quickly.
1272
1273As you can see, the DEBUG message only shows up in the file. The other messages
1274are sent to both destinations.
1275
1276This example uses console and file handlers, but you can use any number and
1277combination of handlers you choose.
1278
Vinay Sajip3ee22ec2009-08-20 22:05:10 +00001279.. _logging-exceptions:
1280
1281Exceptions raised during logging
1282--------------------------------
1283
1284The logging package is designed to swallow exceptions which occur while logging
1285in production. This is so that errors which occur while handling logging events
1286- such as logging misconfiguration, network or other similar errors - do not
1287cause the application using logging to terminate prematurely.
1288
1289:class:`SystemExit` and :class:`KeyboardInterrupt` exceptions are never
1290swallowed. Other exceptions which occur during the :meth:`emit` method of a
1291:class:`Handler` subclass are passed to its :meth:`handleError` method.
1292
1293The default implementation of :meth:`handleError` in :class:`Handler` checks
Georg Brandlef871f62010-03-12 10:06:40 +00001294to see if a module-level variable, :data:`raiseExceptions`, is set. If set, a
1295traceback is printed to :data:`sys.stderr`. If not set, the exception is swallowed.
Vinay Sajip3ee22ec2009-08-20 22:05:10 +00001296
Georg Brandlef871f62010-03-12 10:06:40 +00001297**Note:** The default value of :data:`raiseExceptions` is ``True``. This is because
Vinay Sajip3ee22ec2009-08-20 22:05:10 +00001298during development, you typically want to be notified of any exceptions that
Georg Brandlef871f62010-03-12 10:06:40 +00001299occur. It's advised that you set :data:`raiseExceptions` to ``False`` for production
Vinay Sajip3ee22ec2009-08-20 22:05:10 +00001300usage.
Georg Brandl116aa622007-08-15 14:28:22 +00001301
Christian Heimes790c8232008-01-07 21:14:23 +00001302.. _context-info:
1303
1304Adding contextual information to your logging output
1305----------------------------------------------------
1306
1307Sometimes you want logging output to contain contextual information in
1308addition to the parameters passed to the logging call. For example, in a
1309networked application, it may be desirable to log client-specific information
1310in the log (e.g. remote client's username, or IP address). Although you could
1311use the *extra* parameter to achieve this, it's not always convenient to pass
1312the information in this way. While it might be tempting to create
1313:class:`Logger` instances on a per-connection basis, this is not a good idea
1314because these instances are not garbage collected. While this is not a problem
1315in practice, when the number of :class:`Logger` instances is dependent on the
1316level of granularity you want to use in logging an application, it could
1317be hard to manage if the number of :class:`Logger` instances becomes
1318effectively unbounded.
1319
Vinay Sajipc31be632010-09-06 22:18:20 +00001320
1321Using LoggerAdapters to impart contextual information
1322^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
1323
Christian Heimes04c420f2008-01-18 18:40:46 +00001324An easy way in which you can pass contextual information to be output along
1325with logging event information is to use the :class:`LoggerAdapter` class.
1326This class is designed to look like a :class:`Logger`, so that you can call
1327:meth:`debug`, :meth:`info`, :meth:`warning`, :meth:`error`,
1328:meth:`exception`, :meth:`critical` and :meth:`log`. These methods have the
1329same signatures as their counterparts in :class:`Logger`, so you can use the
1330two types of instances interchangeably.
Christian Heimes790c8232008-01-07 21:14:23 +00001331
Christian Heimes04c420f2008-01-18 18:40:46 +00001332When you create an instance of :class:`LoggerAdapter`, you pass it a
1333:class:`Logger` instance and a dict-like object which contains your contextual
1334information. When you call one of the logging methods on an instance of
1335:class:`LoggerAdapter`, it delegates the call to the underlying instance of
1336:class:`Logger` passed to its constructor, and arranges to pass the contextual
1337information in the delegated call. Here's a snippet from the code of
1338:class:`LoggerAdapter`::
Christian Heimes790c8232008-01-07 21:14:23 +00001339
Christian Heimes04c420f2008-01-18 18:40:46 +00001340 def debug(self, msg, *args, **kwargs):
1341 """
1342 Delegate a debug call to the underlying logger, after adding
1343 contextual information from this adapter instance.
1344 """
1345 msg, kwargs = self.process(msg, kwargs)
1346 self.logger.debug(msg, *args, **kwargs)
Christian Heimes790c8232008-01-07 21:14:23 +00001347
Christian Heimes04c420f2008-01-18 18:40:46 +00001348The :meth:`process` method of :class:`LoggerAdapter` is where the contextual
1349information is added to the logging output. It's passed the message and
1350keyword arguments of the logging call, and it passes back (potentially)
1351modified versions of these to use in the call to the underlying logger. The
1352default implementation of this method leaves the message alone, but inserts
1353an "extra" key in the keyword argument whose value is the dict-like object
1354passed to the constructor. Of course, if you had passed an "extra" keyword
1355argument in the call to the adapter, it will be silently overwritten.
Christian Heimes790c8232008-01-07 21:14:23 +00001356
Christian Heimes04c420f2008-01-18 18:40:46 +00001357The advantage of using "extra" is that the values in the dict-like object are
1358merged into the :class:`LogRecord` instance's __dict__, allowing you to use
1359customized strings with your :class:`Formatter` instances which know about
1360the keys of the dict-like object. If you need a different method, e.g. if you
1361want to prepend or append the contextual information to the message string,
1362you just need to subclass :class:`LoggerAdapter` and override :meth:`process`
1363to do what you need. Here's an example script which uses this class, which
1364also illustrates what dict-like behaviour is needed from an arbitrary
1365"dict-like" object for use in the constructor::
1366
Christian Heimes587c2bf2008-01-19 16:21:02 +00001367 import logging
Georg Brandl86def6c2008-01-21 20:36:10 +00001368
Christian Heimes587c2bf2008-01-19 16:21:02 +00001369 class ConnInfo:
1370 """
1371 An example class which shows how an arbitrary class can be used as
1372 the 'extra' context information repository passed to a LoggerAdapter.
1373 """
Georg Brandl86def6c2008-01-21 20:36:10 +00001374
Christian Heimes587c2bf2008-01-19 16:21:02 +00001375 def __getitem__(self, name):
1376 """
1377 To allow this instance to look like a dict.
1378 """
1379 from random import choice
1380 if name == "ip":
1381 result = choice(["127.0.0.1", "192.168.0.1"])
1382 elif name == "user":
1383 result = choice(["jim", "fred", "sheila"])
1384 else:
1385 result = self.__dict__.get(name, "?")
1386 return result
Georg Brandl86def6c2008-01-21 20:36:10 +00001387
Christian Heimes587c2bf2008-01-19 16:21:02 +00001388 def __iter__(self):
1389 """
1390 To allow iteration over keys, which will be merged into
1391 the LogRecord dict before formatting and output.
1392 """
1393 keys = ["ip", "user"]
1394 keys.extend(self.__dict__.keys())
1395 return keys.__iter__()
Georg Brandl86def6c2008-01-21 20:36:10 +00001396
Christian Heimes587c2bf2008-01-19 16:21:02 +00001397 if __name__ == "__main__":
1398 from random import choice
1399 levels = (logging.DEBUG, logging.INFO, logging.WARNING, logging.ERROR, logging.CRITICAL)
1400 a1 = logging.LoggerAdapter(logging.getLogger("a.b.c"),
1401 { "ip" : "123.231.231.123", "user" : "sheila" })
1402 logging.basicConfig(level=logging.DEBUG,
1403 format="%(asctime)-15s %(name)-5s %(levelname)-8s IP: %(ip)-15s User: %(user)-8s %(message)s")
1404 a1.debug("A debug message")
1405 a1.info("An info message with %s", "some parameters")
1406 a2 = logging.LoggerAdapter(logging.getLogger("d.e.f"), ConnInfo())
1407 for x in range(10):
1408 lvl = choice(levels)
1409 lvlname = logging.getLevelName(lvl)
1410 a2.log(lvl, "A message at %s level with %d %s", lvlname, 2, "parameters")
Christian Heimes04c420f2008-01-18 18:40:46 +00001411
1412When this script is run, the output should look something like this::
1413
Christian Heimes587c2bf2008-01-19 16:21:02 +00001414 2008-01-18 14:49:54,023 a.b.c DEBUG IP: 123.231.231.123 User: sheila A debug message
1415 2008-01-18 14:49:54,023 a.b.c INFO IP: 123.231.231.123 User: sheila An info message with some parameters
1416 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
1417 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
1418 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
1419 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
1420 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
1421 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
1422 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
1423 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
1424 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
1425 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 +00001426
Christian Heimes790c8232008-01-07 21:14:23 +00001427
Vinay Sajipc31be632010-09-06 22:18:20 +00001428Using Filters to impart contextual information
1429^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
1430
1431You can also add contextual information to log output using a user-defined
1432:class:`Filter`. ``Filter`` instances are allowed to modify the ``LogRecords``
1433passed to them, including adding additional attributes which can then be output
1434using a suitable format string, or if needed a custom :class:`Formatter`.
1435
1436For example in a web application, the request being processed (or at least,
1437the interesting parts of it) can be stored in a threadlocal
1438(:class:`threading.local`) variable, and then accessed from a ``Filter`` to
1439add, say, information from the request - say, the remote IP address and remote
1440user's username - to the ``LogRecord``, using the attribute names 'ip' and
1441'user' as in the ``LoggerAdapter`` example above. In that case, the same format
1442string can be used to get similar output to that shown above. Here's an example
1443script::
1444
1445 import logging
1446 from random import choice
1447
1448 class ContextFilter(logging.Filter):
1449 """
1450 This is a filter which injects contextual information into the log.
1451
1452 Rather than use actual contextual information, we just use random
1453 data in this demo.
1454 """
1455
1456 USERS = ['jim', 'fred', 'sheila']
1457 IPS = ['123.231.231.123', '127.0.0.1', '192.168.0.1']
1458
1459 def filter(self, record):
1460
1461 record.ip = choice(ContextFilter.IPS)
1462 record.user = choice(ContextFilter.USERS)
1463 return True
1464
1465 if __name__ == "__main__":
1466 levels = (logging.DEBUG, logging.INFO, logging.WARNING, logging.ERROR, logging.CRITICAL)
1467 a1 = logging.LoggerAdapter(logging.getLogger("a.b.c"),
1468 { "ip" : "123.231.231.123", "user" : "sheila" })
1469 logging.basicConfig(level=logging.DEBUG,
1470 format="%(asctime)-15s %(name)-5s %(levelname)-8s IP: %(ip)-15s User: %(user)-8s %(message)s")
1471 a1 = logging.getLogger("a.b.c")
1472 a2 = logging.getLogger("d.e.f")
1473
1474 f = ContextFilter()
1475 a1.addFilter(f)
1476 a2.addFilter(f)
1477 a1.debug("A debug message")
1478 a1.info("An info message with %s", "some parameters")
1479 for x in range(10):
1480 lvl = choice(levels)
1481 lvlname = logging.getLevelName(lvl)
1482 a2.log(lvl, "A message at %s level with %d %s", lvlname, 2, "parameters")
1483
1484which, when run, produces something like::
1485
1486 2010-09-06 22:38:15,292 a.b.c DEBUG IP: 123.231.231.123 User: fred A debug message
1487 2010-09-06 22:38:15,300 a.b.c INFO IP: 192.168.0.1 User: sheila An info message with some parameters
1488 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
1489 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
1490 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
1491 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
1492 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
1493 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
1494 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
1495 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
1496 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
1497 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
1498
1499
Vinay Sajipd31f3632010-06-29 15:31:15 +00001500.. _multiple-processes:
1501
Vinay Sajipa7471bf2009-08-15 23:23:37 +00001502Logging to a single file from multiple processes
1503------------------------------------------------
1504
1505Although logging is thread-safe, and logging to a single file from multiple
1506threads in a single process *is* supported, logging to a single file from
1507*multiple processes* is *not* supported, because there is no standard way to
1508serialize access to a single file across multiple processes in Python. If you
1509need to log to a single file from multiple processes, the best way of doing
1510this is to have all the processes log to a :class:`SocketHandler`, and have a
1511separate process which implements a socket server which reads from the socket
1512and logs to file. (If you prefer, you can dedicate one thread in one of the
1513existing processes to perform this function.) The following section documents
1514this approach in more detail and includes a working socket receiver which can
1515be used as a starting point for you to adapt in your own applications.
1516
Vinay Sajip5a92b132009-08-15 23:35:08 +00001517If you are using a recent version of Python which includes the
1518:mod:`multiprocessing` module, you can write your own handler which uses the
1519:class:`Lock` class from this module to serialize access to the file from
1520your processes. The existing :class:`FileHandler` and subclasses do not make
1521use of :mod:`multiprocessing` at present, though they may do so in the future.
Vinay Sajip8c6b0a52009-08-17 13:17:47 +00001522Note that at present, the :mod:`multiprocessing` module does not provide
1523working lock functionality on all platforms (see
1524http://bugs.python.org/issue3770).
Vinay Sajip5a92b132009-08-15 23:35:08 +00001525
Benjamin Peterson8719ad52009-09-11 22:24:02 +00001526
Georg Brandl116aa622007-08-15 14:28:22 +00001527.. _network-logging:
1528
1529Sending and receiving logging events across a network
1530-----------------------------------------------------
1531
1532Let's say you want to send logging events across a network, and handle them at
1533the receiving end. A simple way of doing this is attaching a
1534:class:`SocketHandler` instance to the root logger at the sending end::
1535
1536 import logging, logging.handlers
1537
1538 rootLogger = logging.getLogger('')
1539 rootLogger.setLevel(logging.DEBUG)
1540 socketHandler = logging.handlers.SocketHandler('localhost',
1541 logging.handlers.DEFAULT_TCP_LOGGING_PORT)
1542 # don't bother with a formatter, since a socket handler sends the event as
1543 # an unformatted pickle
1544 rootLogger.addHandler(socketHandler)
1545
1546 # Now, we can log to the root logger, or any other logger. First the root...
1547 logging.info('Jackdaws love my big sphinx of quartz.')
1548
1549 # Now, define a couple of other loggers which might represent areas in your
1550 # application:
1551
1552 logger1 = logging.getLogger('myapp.area1')
1553 logger2 = logging.getLogger('myapp.area2')
1554
1555 logger1.debug('Quick zephyrs blow, vexing daft Jim.')
1556 logger1.info('How quickly daft jumping zebras vex.')
1557 logger2.warning('Jail zesty vixen who grabbed pay from quack.')
1558 logger2.error('The five boxing wizards jump quickly.')
1559
Alexandre Vassalottice261952008-05-12 02:31:37 +00001560At the receiving end, you can set up a receiver using the :mod:`socketserver`
Georg Brandl116aa622007-08-15 14:28:22 +00001561module. Here is a basic working example::
1562
Georg Brandla35f4b92009-05-31 16:41:59 +00001563 import pickle
Georg Brandl116aa622007-08-15 14:28:22 +00001564 import logging
1565 import logging.handlers
Alexandre Vassalottice261952008-05-12 02:31:37 +00001566 import socketserver
Georg Brandl116aa622007-08-15 14:28:22 +00001567 import struct
1568
1569
Alexandre Vassalottice261952008-05-12 02:31:37 +00001570 class LogRecordStreamHandler(socketserver.StreamRequestHandler):
Georg Brandl116aa622007-08-15 14:28:22 +00001571 """Handler for a streaming logging request.
1572
1573 This basically logs the record using whatever logging policy is
1574 configured locally.
1575 """
1576
1577 def handle(self):
1578 """
1579 Handle multiple requests - each expected to be a 4-byte length,
1580 followed by the LogRecord in pickle format. Logs the record
1581 according to whatever policy is configured locally.
1582 """
Collin Winter46334482007-09-10 00:49:57 +00001583 while True:
Georg Brandl116aa622007-08-15 14:28:22 +00001584 chunk = self.connection.recv(4)
1585 if len(chunk) < 4:
1586 break
1587 slen = struct.unpack(">L", chunk)[0]
1588 chunk = self.connection.recv(slen)
1589 while len(chunk) < slen:
1590 chunk = chunk + self.connection.recv(slen - len(chunk))
1591 obj = self.unPickle(chunk)
1592 record = logging.makeLogRecord(obj)
1593 self.handleLogRecord(record)
1594
1595 def unPickle(self, data):
Georg Brandla35f4b92009-05-31 16:41:59 +00001596 return pickle.loads(data)
Georg Brandl116aa622007-08-15 14:28:22 +00001597
1598 def handleLogRecord(self, record):
1599 # if a name is specified, we use the named logger rather than the one
1600 # implied by the record.
1601 if self.server.logname is not None:
1602 name = self.server.logname
1603 else:
1604 name = record.name
1605 logger = logging.getLogger(name)
1606 # N.B. EVERY record gets logged. This is because Logger.handle
1607 # is normally called AFTER logger-level filtering. If you want
1608 # to do filtering, do it at the client end to save wasting
1609 # cycles and network bandwidth!
1610 logger.handle(record)
1611
Alexandre Vassalottice261952008-05-12 02:31:37 +00001612 class LogRecordSocketReceiver(socketserver.ThreadingTCPServer):
Georg Brandl116aa622007-08-15 14:28:22 +00001613 """simple TCP socket-based logging receiver suitable for testing.
1614 """
1615
1616 allow_reuse_address = 1
1617
1618 def __init__(self, host='localhost',
1619 port=logging.handlers.DEFAULT_TCP_LOGGING_PORT,
1620 handler=LogRecordStreamHandler):
Alexandre Vassalottice261952008-05-12 02:31:37 +00001621 socketserver.ThreadingTCPServer.__init__(self, (host, port), handler)
Georg Brandl116aa622007-08-15 14:28:22 +00001622 self.abort = 0
1623 self.timeout = 1
1624 self.logname = None
1625
1626 def serve_until_stopped(self):
1627 import select
1628 abort = 0
1629 while not abort:
1630 rd, wr, ex = select.select([self.socket.fileno()],
1631 [], [],
1632 self.timeout)
1633 if rd:
1634 self.handle_request()
1635 abort = self.abort
1636
1637 def main():
1638 logging.basicConfig(
1639 format="%(relativeCreated)5d %(name)-15s %(levelname)-8s %(message)s")
1640 tcpserver = LogRecordSocketReceiver()
Georg Brandl6911e3c2007-09-04 07:15:32 +00001641 print("About to start TCP server...")
Georg Brandl116aa622007-08-15 14:28:22 +00001642 tcpserver.serve_until_stopped()
1643
1644 if __name__ == "__main__":
1645 main()
1646
1647First run the server, and then the client. On the client side, nothing is
1648printed on the console; on the server side, you should see something like::
1649
1650 About to start TCP server...
1651 59 root INFO Jackdaws love my big sphinx of quartz.
1652 59 myapp.area1 DEBUG Quick zephyrs blow, vexing daft Jim.
1653 69 myapp.area1 INFO How quickly daft jumping zebras vex.
1654 69 myapp.area2 WARNING Jail zesty vixen who grabbed pay from quack.
1655 69 myapp.area2 ERROR The five boxing wizards jump quickly.
1656
Vinay Sajipc15dfd62010-07-06 15:08:55 +00001657Note that there are some security issues with pickle in some scenarios. If
1658these affect you, you can use an alternative serialization scheme by overriding
1659the :meth:`makePickle` method and implementing your alternative there, as
1660well as adapting the above script to use your alternative serialization.
1661
Benjamin Peterson4ac9ce42009-10-04 14:49:41 +00001662Using arbitrary objects as messages
1663-----------------------------------
1664
1665In the preceding sections and examples, it has been assumed that the message
1666passed when logging the event is a string. However, this is not the only
1667possibility. You can pass an arbitrary object as a message, and its
1668:meth:`__str__` method will be called when the logging system needs to convert
1669it to a string representation. In fact, if you want to, you can avoid
1670computing a string representation altogether - for example, the
1671:class:`SocketHandler` emits an event by pickling it and sending it over the
1672wire.
1673
1674Optimization
1675------------
1676
1677Formatting of message arguments is deferred until it cannot be avoided.
1678However, computing the arguments passed to the logging method can also be
1679expensive, and you may want to avoid doing it if the logger will just throw
1680away your event. To decide what to do, you can call the :meth:`isEnabledFor`
1681method which takes a level argument and returns true if the event would be
1682created by the Logger for that level of call. You can write code like this::
1683
1684 if logger.isEnabledFor(logging.DEBUG):
1685 logger.debug("Message with %s, %s", expensive_func1(),
1686 expensive_func2())
1687
1688so that if the logger's threshold is set above ``DEBUG``, the calls to
1689:func:`expensive_func1` and :func:`expensive_func2` are never made.
1690
1691There are other optimizations which can be made for specific applications which
1692need more precise control over what logging information is collected. Here's a
1693list of things you can do to avoid processing during logging which you don't
1694need:
1695
1696+-----------------------------------------------+----------------------------------------+
1697| What you don't want to collect | How to avoid collecting it |
1698+===============================================+========================================+
1699| Information about where calls were made from. | Set ``logging._srcfile`` to ``None``. |
1700+-----------------------------------------------+----------------------------------------+
1701| Threading information. | Set ``logging.logThreads`` to ``0``. |
1702+-----------------------------------------------+----------------------------------------+
1703| Process information. | Set ``logging.logProcesses`` to ``0``. |
1704+-----------------------------------------------+----------------------------------------+
1705
1706Also note that the core logging module only includes the basic handlers. If
1707you don't import :mod:`logging.handlers` and :mod:`logging.config`, they won't
1708take up any memory.
1709
1710.. _handler:
Georg Brandl116aa622007-08-15 14:28:22 +00001711
1712Handler Objects
1713---------------
1714
1715Handlers have the following attributes and methods. Note that :class:`Handler`
1716is never instantiated directly; this class acts as a base for more useful
1717subclasses. However, the :meth:`__init__` method in subclasses needs to call
1718:meth:`Handler.__init__`.
1719
1720
1721.. method:: Handler.__init__(level=NOTSET)
1722
1723 Initializes the :class:`Handler` instance by setting its level, setting the list
1724 of filters to the empty list and creating a lock (using :meth:`createLock`) for
1725 serializing access to an I/O mechanism.
1726
1727
1728.. method:: Handler.createLock()
1729
1730 Initializes a thread lock which can be used to serialize access to underlying
1731 I/O functionality which may not be threadsafe.
1732
1733
1734.. method:: Handler.acquire()
1735
1736 Acquires the thread lock created with :meth:`createLock`.
1737
1738
1739.. method:: Handler.release()
1740
1741 Releases the thread lock acquired with :meth:`acquire`.
1742
1743
1744.. method:: Handler.setLevel(lvl)
1745
1746 Sets the threshold for this handler to *lvl*. Logging messages which are less
1747 severe than *lvl* will be ignored. When a handler is created, the level is set
1748 to :const:`NOTSET` (which causes all messages to be processed).
1749
1750
1751.. method:: Handler.setFormatter(form)
1752
1753 Sets the :class:`Formatter` for this handler to *form*.
1754
1755
1756.. method:: Handler.addFilter(filt)
1757
1758 Adds the specified filter *filt* to this handler.
1759
1760
1761.. method:: Handler.removeFilter(filt)
1762
1763 Removes the specified filter *filt* from this handler.
1764
1765
1766.. method:: Handler.filter(record)
1767
1768 Applies this handler's filters to the record and returns a true value if the
1769 record is to be processed.
1770
1771
1772.. method:: Handler.flush()
1773
1774 Ensure all logging output has been flushed. This version does nothing and is
1775 intended to be implemented by subclasses.
1776
1777
1778.. method:: Handler.close()
1779
Benjamin Peterson3e4f0552008-09-02 00:31:15 +00001780 Tidy up any resources used by the handler. This version does no output but
1781 removes the handler from an internal list of handlers which is closed when
1782 :func:`shutdown` is called. Subclasses should ensure that this gets called
1783 from overridden :meth:`close` methods.
Georg Brandl116aa622007-08-15 14:28:22 +00001784
1785
1786.. method:: Handler.handle(record)
1787
1788 Conditionally emits the specified logging record, depending on filters which may
1789 have been added to the handler. Wraps the actual emission of the record with
1790 acquisition/release of the I/O thread lock.
1791
1792
1793.. method:: Handler.handleError(record)
1794
1795 This method should be called from handlers when an exception is encountered
1796 during an :meth:`emit` call. By default it does nothing, which means that
1797 exceptions get silently ignored. This is what is mostly wanted for a logging
1798 system - most users will not care about errors in the logging system, they are
1799 more interested in application errors. You could, however, replace this with a
1800 custom handler if you wish. The specified record is the one which was being
1801 processed when the exception occurred.
1802
1803
1804.. method:: Handler.format(record)
1805
1806 Do formatting for a record - if a formatter is set, use it. Otherwise, use the
1807 default formatter for the module.
1808
1809
1810.. method:: Handler.emit(record)
1811
1812 Do whatever it takes to actually log the specified logging record. This version
1813 is intended to be implemented by subclasses and so raises a
1814 :exc:`NotImplementedError`.
1815
1816
Vinay Sajipd31f3632010-06-29 15:31:15 +00001817.. _stream-handler:
1818
Georg Brandl116aa622007-08-15 14:28:22 +00001819StreamHandler
1820^^^^^^^^^^^^^
1821
1822The :class:`StreamHandler` class, located in the core :mod:`logging` package,
1823sends logging output to streams such as *sys.stdout*, *sys.stderr* or any
1824file-like object (or, more precisely, any object which supports :meth:`write`
1825and :meth:`flush` methods).
1826
1827
Benjamin Peterson1baf4652009-12-31 03:11:23 +00001828.. currentmodule:: logging
1829
Benjamin Peterson4ac9ce42009-10-04 14:49:41 +00001830.. class:: StreamHandler(stream=None)
Georg Brandl116aa622007-08-15 14:28:22 +00001831
Benjamin Peterson4ac9ce42009-10-04 14:49:41 +00001832 Returns a new instance of the :class:`StreamHandler` class. If *stream* is
Georg Brandl116aa622007-08-15 14:28:22 +00001833 specified, the instance will use it for logging output; otherwise, *sys.stderr*
1834 will be used.
1835
1836
Benjamin Petersone41251e2008-04-25 01:59:09 +00001837 .. method:: emit(record)
Georg Brandl116aa622007-08-15 14:28:22 +00001838
Benjamin Petersone41251e2008-04-25 01:59:09 +00001839 If a formatter is specified, it is used to format the record. The record
1840 is then written to the stream with a trailing newline. If exception
1841 information is present, it is formatted using
1842 :func:`traceback.print_exception` and appended to the stream.
Georg Brandl116aa622007-08-15 14:28:22 +00001843
1844
Benjamin Petersone41251e2008-04-25 01:59:09 +00001845 .. method:: flush()
Georg Brandl116aa622007-08-15 14:28:22 +00001846
Benjamin Petersone41251e2008-04-25 01:59:09 +00001847 Flushes the stream by calling its :meth:`flush` method. Note that the
1848 :meth:`close` method is inherited from :class:`Handler` and so does
Benjamin Peterson3e4f0552008-09-02 00:31:15 +00001849 no output, so an explicit :meth:`flush` call may be needed at times.
Georg Brandl116aa622007-08-15 14:28:22 +00001850
1851
Vinay Sajipd31f3632010-06-29 15:31:15 +00001852.. _file-handler:
1853
Georg Brandl116aa622007-08-15 14:28:22 +00001854FileHandler
1855^^^^^^^^^^^
1856
1857The :class:`FileHandler` class, located in the core :mod:`logging` package,
1858sends logging output to a disk file. It inherits the output functionality from
1859:class:`StreamHandler`.
1860
1861
Vinay Sajipd31f3632010-06-29 15:31:15 +00001862.. class:: FileHandler(filename, mode='a', encoding=None, delay=False)
Georg Brandl116aa622007-08-15 14:28:22 +00001863
1864 Returns a new instance of the :class:`FileHandler` class. The specified file is
1865 opened and used as the stream for logging. If *mode* is not specified,
1866 :const:`'a'` is used. If *encoding* is not *None*, it is used to open the file
Christian Heimese7a15bb2008-01-24 16:21:45 +00001867 with that encoding. If *delay* is true, then file opening is deferred until the
1868 first call to :meth:`emit`. By default, the file grows indefinitely.
Georg Brandl116aa622007-08-15 14:28:22 +00001869
1870
Benjamin Petersone41251e2008-04-25 01:59:09 +00001871 .. method:: close()
Georg Brandl116aa622007-08-15 14:28:22 +00001872
Benjamin Petersone41251e2008-04-25 01:59:09 +00001873 Closes the file.
Georg Brandl116aa622007-08-15 14:28:22 +00001874
1875
Benjamin Petersone41251e2008-04-25 01:59:09 +00001876 .. method:: emit(record)
Georg Brandl116aa622007-08-15 14:28:22 +00001877
Benjamin Petersone41251e2008-04-25 01:59:09 +00001878 Outputs the record to the file.
Georg Brandl116aa622007-08-15 14:28:22 +00001879
Vinay Sajipd31f3632010-06-29 15:31:15 +00001880.. _null-handler:
Georg Brandl116aa622007-08-15 14:28:22 +00001881
Vinay Sajipaa672eb2009-01-02 18:53:45 +00001882NullHandler
1883^^^^^^^^^^^
1884
1885.. versionadded:: 3.1
1886
1887The :class:`NullHandler` class, located in the core :mod:`logging` package,
1888does not do any formatting or output. It is essentially a "no-op" handler
1889for use by library developers.
1890
1891
1892.. class:: NullHandler()
1893
1894 Returns a new instance of the :class:`NullHandler` class.
1895
1896
1897 .. method:: emit(record)
1898
1899 This method does nothing.
1900
Vinay Sajip26a2d5e2009-01-10 13:37:26 +00001901See :ref:`library-config` for more information on how to use
1902:class:`NullHandler`.
Benjamin Peterson960cf0f2009-01-09 04:11:44 +00001903
Vinay Sajipd31f3632010-06-29 15:31:15 +00001904.. _watched-file-handler:
1905
Georg Brandl116aa622007-08-15 14:28:22 +00001906WatchedFileHandler
1907^^^^^^^^^^^^^^^^^^
1908
Benjamin Peterson058e31e2009-01-16 03:54:08 +00001909.. currentmodule:: logging.handlers
Vinay Sajipaa672eb2009-01-02 18:53:45 +00001910
Georg Brandl116aa622007-08-15 14:28:22 +00001911The :class:`WatchedFileHandler` class, located in the :mod:`logging.handlers`
1912module, is a :class:`FileHandler` which watches the file it is logging to. If
1913the file changes, it is closed and reopened using the file name.
1914
1915A file change can happen because of usage of programs such as *newsyslog* and
1916*logrotate* which perform log file rotation. This handler, intended for use
1917under Unix/Linux, watches the file to see if it has changed since the last emit.
1918(A file is deemed to have changed if its device or inode have changed.) If the
1919file has changed, the old file stream is closed, and the file opened to get a
1920new stream.
1921
1922This handler is not appropriate for use under Windows, because under Windows
1923open log files cannot be moved or renamed - logging opens the files with
1924exclusive locks - and so there is no need for such a handler. Furthermore,
1925*ST_INO* is not supported under Windows; :func:`stat` always returns zero for
1926this value.
1927
1928
Christian Heimese7a15bb2008-01-24 16:21:45 +00001929.. class:: WatchedFileHandler(filename[,mode[, encoding[, delay]]])
Georg Brandl116aa622007-08-15 14:28:22 +00001930
1931 Returns a new instance of the :class:`WatchedFileHandler` class. The specified
1932 file is opened and used as the stream for logging. If *mode* is not specified,
1933 :const:`'a'` is used. If *encoding* is not *None*, it is used to open the file
Christian Heimese7a15bb2008-01-24 16:21:45 +00001934 with that encoding. If *delay* is true, then file opening is deferred until the
1935 first call to :meth:`emit`. By default, the file grows indefinitely.
Georg Brandl116aa622007-08-15 14:28:22 +00001936
1937
Benjamin Petersone41251e2008-04-25 01:59:09 +00001938 .. method:: emit(record)
Georg Brandl116aa622007-08-15 14:28:22 +00001939
Benjamin Petersone41251e2008-04-25 01:59:09 +00001940 Outputs the record to the file, but first checks to see if the file has
1941 changed. If it has, the existing stream is flushed and closed and the
1942 file opened again, before outputting the record to the file.
Georg Brandl116aa622007-08-15 14:28:22 +00001943
Vinay Sajipd31f3632010-06-29 15:31:15 +00001944.. _rotating-file-handler:
Georg Brandl116aa622007-08-15 14:28:22 +00001945
1946RotatingFileHandler
1947^^^^^^^^^^^^^^^^^^^
1948
1949The :class:`RotatingFileHandler` class, located in the :mod:`logging.handlers`
1950module, supports rotation of disk log files.
1951
1952
Georg Brandlcd7f32b2009-06-08 09:13:45 +00001953.. class:: RotatingFileHandler(filename, mode='a', maxBytes=0, backupCount=0, encoding=None, delay=0)
Georg Brandl116aa622007-08-15 14:28:22 +00001954
1955 Returns a new instance of the :class:`RotatingFileHandler` class. The specified
1956 file is opened and used as the stream for logging. If *mode* is not specified,
Christian Heimese7a15bb2008-01-24 16:21:45 +00001957 ``'a'`` is used. If *encoding* is not *None*, it is used to open the file
1958 with that encoding. If *delay* is true, then file opening is deferred until the
1959 first call to :meth:`emit`. By default, the file grows indefinitely.
Georg Brandl116aa622007-08-15 14:28:22 +00001960
1961 You can use the *maxBytes* and *backupCount* values to allow the file to
1962 :dfn:`rollover` at a predetermined size. When the size is about to be exceeded,
1963 the file is closed and a new file is silently opened for output. Rollover occurs
1964 whenever the current log file is nearly *maxBytes* in length; if *maxBytes* is
1965 zero, rollover never occurs. If *backupCount* is non-zero, the system will save
1966 old log files by appending the extensions ".1", ".2" etc., to the filename. For
1967 example, with a *backupCount* of 5 and a base file name of :file:`app.log`, you
1968 would get :file:`app.log`, :file:`app.log.1`, :file:`app.log.2`, up to
1969 :file:`app.log.5`. The file being written to is always :file:`app.log`. When
1970 this file is filled, it is closed and renamed to :file:`app.log.1`, and if files
1971 :file:`app.log.1`, :file:`app.log.2`, etc. exist, then they are renamed to
1972 :file:`app.log.2`, :file:`app.log.3` etc. respectively.
1973
1974
Benjamin Petersone41251e2008-04-25 01:59:09 +00001975 .. method:: doRollover()
Georg Brandl116aa622007-08-15 14:28:22 +00001976
Benjamin Petersone41251e2008-04-25 01:59:09 +00001977 Does a rollover, as described above.
Georg Brandl116aa622007-08-15 14:28:22 +00001978
1979
Benjamin Petersone41251e2008-04-25 01:59:09 +00001980 .. method:: emit(record)
Georg Brandl116aa622007-08-15 14:28:22 +00001981
Benjamin Petersone41251e2008-04-25 01:59:09 +00001982 Outputs the record to the file, catering for rollover as described
1983 previously.
Georg Brandl116aa622007-08-15 14:28:22 +00001984
Vinay Sajipd31f3632010-06-29 15:31:15 +00001985.. _timed-rotating-file-handler:
Georg Brandl116aa622007-08-15 14:28:22 +00001986
1987TimedRotatingFileHandler
1988^^^^^^^^^^^^^^^^^^^^^^^^
1989
1990The :class:`TimedRotatingFileHandler` class, located in the
1991:mod:`logging.handlers` module, supports rotation of disk log files at certain
1992timed intervals.
1993
1994
Vinay Sajipd31f3632010-06-29 15:31:15 +00001995.. class:: TimedRotatingFileHandler(filename, when='h', interval=1, backupCount=0, encoding=None, delay=False, utc=False)
Georg Brandl116aa622007-08-15 14:28:22 +00001996
1997 Returns a new instance of the :class:`TimedRotatingFileHandler` class. The
1998 specified file is opened and used as the stream for logging. On rotating it also
1999 sets the filename suffix. Rotating happens based on the product of *when* and
2000 *interval*.
2001
2002 You can use the *when* to specify the type of *interval*. The list of possible
Georg Brandl0c77a822008-06-10 16:37:50 +00002003 values is below. Note that they are not case sensitive.
Georg Brandl116aa622007-08-15 14:28:22 +00002004
Christian Heimesb558a2e2008-03-02 22:46:37 +00002005 +----------------+-----------------------+
2006 | Value | Type of interval |
2007 +================+=======================+
2008 | ``'S'`` | Seconds |
2009 +----------------+-----------------------+
2010 | ``'M'`` | Minutes |
2011 +----------------+-----------------------+
2012 | ``'H'`` | Hours |
2013 +----------------+-----------------------+
2014 | ``'D'`` | Days |
2015 +----------------+-----------------------+
2016 | ``'W'`` | Week day (0=Monday) |
2017 +----------------+-----------------------+
2018 | ``'midnight'`` | Roll over at midnight |
2019 +----------------+-----------------------+
Georg Brandl116aa622007-08-15 14:28:22 +00002020
Christian Heimesb558a2e2008-03-02 22:46:37 +00002021 The system will save old log files by appending extensions to the filename.
2022 The extensions are date-and-time based, using the strftime format
Benjamin Petersonad9d48d2008-04-02 21:49:44 +00002023 ``%Y-%m-%d_%H-%M-%S`` or a leading portion thereof, depending on the
Georg Brandl3dbca812008-07-23 16:10:53 +00002024 rollover interval.
Benjamin Peterson9451a1c2010-03-13 22:30:34 +00002025
2026 When computing the next rollover time for the first time (when the handler
2027 is created), the last modification time of an existing log file, or else
2028 the current time, is used to compute when the next rotation will occur.
2029
Georg Brandl0c77a822008-06-10 16:37:50 +00002030 If the *utc* argument is true, times in UTC will be used; otherwise
2031 local time is used.
2032
2033 If *backupCount* is nonzero, at most *backupCount* files
Benjamin Petersonad9d48d2008-04-02 21:49:44 +00002034 will be kept, and if more would be created when rollover occurs, the oldest
2035 one is deleted. The deletion logic uses the interval to determine which
2036 files to delete, so changing the interval may leave old files lying around.
Georg Brandl116aa622007-08-15 14:28:22 +00002037
Vinay Sajipd31f3632010-06-29 15:31:15 +00002038 If *delay* is true, then file opening is deferred until the first call to
2039 :meth:`emit`.
2040
Georg Brandl116aa622007-08-15 14:28:22 +00002041
Benjamin Petersone41251e2008-04-25 01:59:09 +00002042 .. method:: doRollover()
Georg Brandl116aa622007-08-15 14:28:22 +00002043
Benjamin Petersone41251e2008-04-25 01:59:09 +00002044 Does a rollover, as described above.
Georg Brandl116aa622007-08-15 14:28:22 +00002045
2046
Benjamin Petersone41251e2008-04-25 01:59:09 +00002047 .. method:: emit(record)
Georg Brandl116aa622007-08-15 14:28:22 +00002048
Benjamin Petersone41251e2008-04-25 01:59:09 +00002049 Outputs the record to the file, catering for rollover as described above.
Georg Brandl116aa622007-08-15 14:28:22 +00002050
2051
Vinay Sajipd31f3632010-06-29 15:31:15 +00002052.. _socket-handler:
2053
Georg Brandl116aa622007-08-15 14:28:22 +00002054SocketHandler
2055^^^^^^^^^^^^^
2056
2057The :class:`SocketHandler` class, located in the :mod:`logging.handlers` module,
2058sends logging output to a network socket. The base class uses a TCP socket.
2059
2060
2061.. class:: SocketHandler(host, port)
2062
2063 Returns a new instance of the :class:`SocketHandler` class intended to
2064 communicate with a remote machine whose address is given by *host* and *port*.
2065
2066
Benjamin Petersone41251e2008-04-25 01:59:09 +00002067 .. method:: close()
Georg Brandl116aa622007-08-15 14:28:22 +00002068
Benjamin Petersone41251e2008-04-25 01:59:09 +00002069 Closes the socket.
Georg Brandl116aa622007-08-15 14:28:22 +00002070
2071
Benjamin Petersone41251e2008-04-25 01:59:09 +00002072 .. method:: emit()
Georg Brandl116aa622007-08-15 14:28:22 +00002073
Benjamin Petersone41251e2008-04-25 01:59:09 +00002074 Pickles the record's attribute dictionary and writes it to the socket in
2075 binary format. If there is an error with the socket, silently drops the
2076 packet. If the connection was previously lost, re-establishes the
2077 connection. To unpickle the record at the receiving end into a
2078 :class:`LogRecord`, use the :func:`makeLogRecord` function.
Georg Brandl116aa622007-08-15 14:28:22 +00002079
2080
Benjamin Petersone41251e2008-04-25 01:59:09 +00002081 .. method:: handleError()
Georg Brandl116aa622007-08-15 14:28:22 +00002082
Benjamin Petersone41251e2008-04-25 01:59:09 +00002083 Handles an error which has occurred during :meth:`emit`. The most likely
2084 cause is a lost connection. Closes the socket so that we can retry on the
2085 next event.
Georg Brandl116aa622007-08-15 14:28:22 +00002086
2087
Benjamin Petersone41251e2008-04-25 01:59:09 +00002088 .. method:: makeSocket()
Georg Brandl116aa622007-08-15 14:28:22 +00002089
Benjamin Petersone41251e2008-04-25 01:59:09 +00002090 This is a factory method which allows subclasses to define the precise
2091 type of socket they want. The default implementation creates a TCP socket
2092 (:const:`socket.SOCK_STREAM`).
Georg Brandl116aa622007-08-15 14:28:22 +00002093
2094
Benjamin Petersone41251e2008-04-25 01:59:09 +00002095 .. method:: makePickle(record)
Georg Brandl116aa622007-08-15 14:28:22 +00002096
Benjamin Petersone41251e2008-04-25 01:59:09 +00002097 Pickles the record's attribute dictionary in binary format with a length
2098 prefix, and returns it ready for transmission across the socket.
Georg Brandl116aa622007-08-15 14:28:22 +00002099
Vinay Sajipd31f3632010-06-29 15:31:15 +00002100 Note that pickles aren't completely secure. If you are concerned about
2101 security, you may want to override this method to implement a more secure
2102 mechanism. For example, you can sign pickles using HMAC and then verify
2103 them on the receiving end, or alternatively you can disable unpickling of
2104 global objects on the receiving end.
Georg Brandl116aa622007-08-15 14:28:22 +00002105
Benjamin Petersone41251e2008-04-25 01:59:09 +00002106 .. method:: send(packet)
Georg Brandl116aa622007-08-15 14:28:22 +00002107
Benjamin Petersone41251e2008-04-25 01:59:09 +00002108 Send a pickled string *packet* to the socket. This function allows for
2109 partial sends which can happen when the network is busy.
Georg Brandl116aa622007-08-15 14:28:22 +00002110
2111
Vinay Sajipd31f3632010-06-29 15:31:15 +00002112.. _datagram-handler:
2113
Georg Brandl116aa622007-08-15 14:28:22 +00002114DatagramHandler
2115^^^^^^^^^^^^^^^
2116
2117The :class:`DatagramHandler` class, located in the :mod:`logging.handlers`
2118module, inherits from :class:`SocketHandler` to support sending logging messages
2119over UDP sockets.
2120
2121
2122.. class:: DatagramHandler(host, port)
2123
2124 Returns a new instance of the :class:`DatagramHandler` class intended to
2125 communicate with a remote machine whose address is given by *host* and *port*.
2126
2127
Benjamin Petersone41251e2008-04-25 01:59:09 +00002128 .. method:: emit()
Georg Brandl116aa622007-08-15 14:28:22 +00002129
Benjamin Petersone41251e2008-04-25 01:59:09 +00002130 Pickles the record's attribute dictionary and writes it to the socket in
2131 binary format. If there is an error with the socket, silently drops the
2132 packet. To unpickle the record at the receiving end into a
2133 :class:`LogRecord`, use the :func:`makeLogRecord` function.
Georg Brandl116aa622007-08-15 14:28:22 +00002134
2135
Benjamin Petersone41251e2008-04-25 01:59:09 +00002136 .. method:: makeSocket()
Georg Brandl116aa622007-08-15 14:28:22 +00002137
Benjamin Petersone41251e2008-04-25 01:59:09 +00002138 The factory method of :class:`SocketHandler` is here overridden to create
2139 a UDP socket (:const:`socket.SOCK_DGRAM`).
Georg Brandl116aa622007-08-15 14:28:22 +00002140
2141
Benjamin Petersone41251e2008-04-25 01:59:09 +00002142 .. method:: send(s)
Georg Brandl116aa622007-08-15 14:28:22 +00002143
Benjamin Petersone41251e2008-04-25 01:59:09 +00002144 Send a pickled string to a socket.
Georg Brandl116aa622007-08-15 14:28:22 +00002145
2146
Vinay Sajipd31f3632010-06-29 15:31:15 +00002147.. _syslog-handler:
2148
Georg Brandl116aa622007-08-15 14:28:22 +00002149SysLogHandler
2150^^^^^^^^^^^^^
2151
2152The :class:`SysLogHandler` class, located in the :mod:`logging.handlers` module,
2153supports sending logging messages to a remote or local Unix syslog.
2154
2155
Vinay Sajipcbabd7e2009-10-10 20:32:36 +00002156.. class:: SysLogHandler(address=('localhost', SYSLOG_UDP_PORT), facility=LOG_USER, socktype=socket.SOCK_DGRAM)
Georg Brandl116aa622007-08-15 14:28:22 +00002157
2158 Returns a new instance of the :class:`SysLogHandler` class intended to
2159 communicate with a remote Unix machine whose address is given by *address* in
2160 the form of a ``(host, port)`` tuple. If *address* is not specified,
Vinay Sajipcbabd7e2009-10-10 20:32:36 +00002161 ``('localhost', 514)`` is used. The address is used to open a socket. An
Georg Brandl116aa622007-08-15 14:28:22 +00002162 alternative to providing a ``(host, port)`` tuple is providing an address as a
2163 string, for example "/dev/log". In this case, a Unix domain socket is used to
2164 send the message to the syslog. If *facility* is not specified,
Vinay Sajipcbabd7e2009-10-10 20:32:36 +00002165 :const:`LOG_USER` is used. The type of socket opened depends on the
2166 *socktype* argument, which defaults to :const:`socket.SOCK_DGRAM` and thus
2167 opens a UDP socket. To open a TCP socket (for use with the newer syslog
2168 daemons such as rsyslog), specify a value of :const:`socket.SOCK_STREAM`.
2169
2170 .. versionchanged:: 3.2
2171 *socktype* was added.
Georg Brandl116aa622007-08-15 14:28:22 +00002172
2173
Benjamin Petersone41251e2008-04-25 01:59:09 +00002174 .. method:: close()
Georg Brandl116aa622007-08-15 14:28:22 +00002175
Benjamin Petersone41251e2008-04-25 01:59:09 +00002176 Closes the socket to the remote host.
Georg Brandl116aa622007-08-15 14:28:22 +00002177
2178
Benjamin Petersone41251e2008-04-25 01:59:09 +00002179 .. method:: emit(record)
Georg Brandl116aa622007-08-15 14:28:22 +00002180
Benjamin Petersone41251e2008-04-25 01:59:09 +00002181 The record is formatted, and then sent to the syslog server. If exception
2182 information is present, it is *not* sent to the server.
Georg Brandl116aa622007-08-15 14:28:22 +00002183
2184
Benjamin Petersone41251e2008-04-25 01:59:09 +00002185 .. method:: encodePriority(facility, priority)
Georg Brandl116aa622007-08-15 14:28:22 +00002186
Benjamin Petersone41251e2008-04-25 01:59:09 +00002187 Encodes the facility and priority into an integer. You can pass in strings
2188 or integers - if strings are passed, internal mapping dictionaries are
2189 used to convert them to integers.
Georg Brandl116aa622007-08-15 14:28:22 +00002190
Benjamin Peterson22005fc2010-04-11 16:25:06 +00002191 The symbolic ``LOG_`` values are defined in :class:`SysLogHandler` and
2192 mirror the values defined in the ``sys/syslog.h`` header file.
Benjamin Peterson08bf91c2010-04-11 16:12:57 +00002193
Georg Brandl88d7dbd2010-04-18 09:50:07 +00002194 **Priorities**
2195
Benjamin Peterson08bf91c2010-04-11 16:12:57 +00002196 +--------------------------+---------------+
2197 | Name (string) | Symbolic value|
2198 +==========================+===============+
2199 | ``alert`` | LOG_ALERT |
2200 +--------------------------+---------------+
2201 | ``crit`` or ``critical`` | LOG_CRIT |
2202 +--------------------------+---------------+
2203 | ``debug`` | LOG_DEBUG |
2204 +--------------------------+---------------+
2205 | ``emerg`` or ``panic`` | LOG_EMERG |
2206 +--------------------------+---------------+
2207 | ``err`` or ``error`` | LOG_ERR |
2208 +--------------------------+---------------+
2209 | ``info`` | LOG_INFO |
2210 +--------------------------+---------------+
2211 | ``notice`` | LOG_NOTICE |
2212 +--------------------------+---------------+
2213 | ``warn`` or ``warning`` | LOG_WARNING |
2214 +--------------------------+---------------+
2215
Georg Brandl88d7dbd2010-04-18 09:50:07 +00002216 **Facilities**
2217
Benjamin Peterson08bf91c2010-04-11 16:12:57 +00002218 +---------------+---------------+
2219 | Name (string) | Symbolic value|
2220 +===============+===============+
2221 | ``auth`` | LOG_AUTH |
2222 +---------------+---------------+
2223 | ``authpriv`` | LOG_AUTHPRIV |
2224 +---------------+---------------+
2225 | ``cron`` | LOG_CRON |
2226 +---------------+---------------+
2227 | ``daemon`` | LOG_DAEMON |
2228 +---------------+---------------+
2229 | ``ftp`` | LOG_FTP |
2230 +---------------+---------------+
2231 | ``kern`` | LOG_KERN |
2232 +---------------+---------------+
2233 | ``lpr`` | LOG_LPR |
2234 +---------------+---------------+
2235 | ``mail`` | LOG_MAIL |
2236 +---------------+---------------+
2237 | ``news`` | LOG_NEWS |
2238 +---------------+---------------+
2239 | ``syslog`` | LOG_SYSLOG |
2240 +---------------+---------------+
2241 | ``user`` | LOG_USER |
2242 +---------------+---------------+
2243 | ``uucp`` | LOG_UUCP |
2244 +---------------+---------------+
2245 | ``local0`` | LOG_LOCAL0 |
2246 +---------------+---------------+
2247 | ``local1`` | LOG_LOCAL1 |
2248 +---------------+---------------+
2249 | ``local2`` | LOG_LOCAL2 |
2250 +---------------+---------------+
2251 | ``local3`` | LOG_LOCAL3 |
2252 +---------------+---------------+
2253 | ``local4`` | LOG_LOCAL4 |
2254 +---------------+---------------+
2255 | ``local5`` | LOG_LOCAL5 |
2256 +---------------+---------------+
2257 | ``local6`` | LOG_LOCAL6 |
2258 +---------------+---------------+
2259 | ``local7`` | LOG_LOCAL7 |
2260 +---------------+---------------+
2261
2262 .. method:: mapPriority(levelname)
2263
2264 Maps a logging level name to a syslog priority name.
2265 You may need to override this if you are using custom levels, or
2266 if the default algorithm is not suitable for your needs. The
2267 default algorithm maps ``DEBUG``, ``INFO``, ``WARNING``, ``ERROR`` and
2268 ``CRITICAL`` to the equivalent syslog names, and all other level
2269 names to "warning".
2270
2271.. _nt-eventlog-handler:
Georg Brandl116aa622007-08-15 14:28:22 +00002272
2273NTEventLogHandler
2274^^^^^^^^^^^^^^^^^
2275
2276The :class:`NTEventLogHandler` class, located in the :mod:`logging.handlers`
2277module, supports sending logging messages to a local Windows NT, Windows 2000 or
2278Windows XP event log. Before you can use it, you need Mark Hammond's Win32
2279extensions for Python installed.
2280
2281
Georg Brandlcd7f32b2009-06-08 09:13:45 +00002282.. class:: NTEventLogHandler(appname, dllname=None, logtype='Application')
Georg Brandl116aa622007-08-15 14:28:22 +00002283
2284 Returns a new instance of the :class:`NTEventLogHandler` class. The *appname* is
2285 used to define the application name as it appears in the event log. An
2286 appropriate registry entry is created using this name. The *dllname* should give
2287 the fully qualified pathname of a .dll or .exe which contains message
2288 definitions to hold in the log (if not specified, ``'win32service.pyd'`` is used
2289 - this is installed with the Win32 extensions and contains some basic
2290 placeholder message definitions. Note that use of these placeholders will make
2291 your event logs big, as the entire message source is held in the log. If you
2292 want slimmer logs, you have to pass in the name of your own .dll or .exe which
2293 contains the message definitions you want to use in the event log). The
2294 *logtype* is one of ``'Application'``, ``'System'`` or ``'Security'``, and
2295 defaults to ``'Application'``.
2296
2297
Benjamin Petersone41251e2008-04-25 01:59:09 +00002298 .. method:: close()
Georg Brandl116aa622007-08-15 14:28:22 +00002299
Benjamin Petersone41251e2008-04-25 01:59:09 +00002300 At this point, you can remove the application name from the registry as a
2301 source of event log entries. However, if you do this, you will not be able
2302 to see the events as you intended in the Event Log Viewer - it needs to be
2303 able to access the registry to get the .dll name. The current version does
Benjamin Peterson3e4f0552008-09-02 00:31:15 +00002304 not do this.
Georg Brandl116aa622007-08-15 14:28:22 +00002305
2306
Benjamin Petersone41251e2008-04-25 01:59:09 +00002307 .. method:: emit(record)
Georg Brandl116aa622007-08-15 14:28:22 +00002308
Benjamin Petersone41251e2008-04-25 01:59:09 +00002309 Determines the message ID, event category and event type, and then logs
2310 the message in the NT event log.
Georg Brandl116aa622007-08-15 14:28:22 +00002311
2312
Benjamin Petersone41251e2008-04-25 01:59:09 +00002313 .. method:: getEventCategory(record)
Georg Brandl116aa622007-08-15 14:28:22 +00002314
Benjamin Petersone41251e2008-04-25 01:59:09 +00002315 Returns the event category for the record. Override this if you want to
2316 specify your own categories. This version returns 0.
Georg Brandl116aa622007-08-15 14:28:22 +00002317
2318
Benjamin Petersone41251e2008-04-25 01:59:09 +00002319 .. method:: getEventType(record)
Georg Brandl116aa622007-08-15 14:28:22 +00002320
Benjamin Petersone41251e2008-04-25 01:59:09 +00002321 Returns the event type for the record. Override this if you want to
2322 specify your own types. This version does a mapping using the handler's
2323 typemap attribute, which is set up in :meth:`__init__` to a dictionary
2324 which contains mappings for :const:`DEBUG`, :const:`INFO`,
2325 :const:`WARNING`, :const:`ERROR` and :const:`CRITICAL`. If you are using
2326 your own levels, you will either need to override this method or place a
2327 suitable dictionary in the handler's *typemap* attribute.
Georg Brandl116aa622007-08-15 14:28:22 +00002328
2329
Benjamin Petersone41251e2008-04-25 01:59:09 +00002330 .. method:: getMessageID(record)
Georg Brandl116aa622007-08-15 14:28:22 +00002331
Benjamin Petersone41251e2008-04-25 01:59:09 +00002332 Returns the message ID for the record. If you are using your own messages,
2333 you could do this by having the *msg* passed to the logger being an ID
2334 rather than a format string. Then, in here, you could use a dictionary
2335 lookup to get the message ID. This version returns 1, which is the base
2336 message ID in :file:`win32service.pyd`.
Georg Brandl116aa622007-08-15 14:28:22 +00002337
Vinay Sajipd31f3632010-06-29 15:31:15 +00002338.. _smtp-handler:
Georg Brandl116aa622007-08-15 14:28:22 +00002339
2340SMTPHandler
2341^^^^^^^^^^^
2342
2343The :class:`SMTPHandler` class, located in the :mod:`logging.handlers` module,
2344supports sending logging messages to an email address via SMTP.
2345
2346
Georg Brandlcd7f32b2009-06-08 09:13:45 +00002347.. class:: SMTPHandler(mailhost, fromaddr, toaddrs, subject, credentials=None)
Georg Brandl116aa622007-08-15 14:28:22 +00002348
2349 Returns a new instance of the :class:`SMTPHandler` class. The instance is
2350 initialized with the from and to addresses and subject line of the email. The
2351 *toaddrs* should be a list of strings. To specify a non-standard SMTP port, use
2352 the (host, port) tuple format for the *mailhost* argument. If you use a string,
2353 the standard SMTP port is used. If your SMTP server requires authentication, you
2354 can specify a (username, password) tuple for the *credentials* argument.
2355
Georg Brandl116aa622007-08-15 14:28:22 +00002356
Benjamin Petersone41251e2008-04-25 01:59:09 +00002357 .. method:: emit(record)
Georg Brandl116aa622007-08-15 14:28:22 +00002358
Benjamin Petersone41251e2008-04-25 01:59:09 +00002359 Formats the record and sends it to the specified addressees.
Georg Brandl116aa622007-08-15 14:28:22 +00002360
2361
Benjamin Petersone41251e2008-04-25 01:59:09 +00002362 .. method:: getSubject(record)
Georg Brandl116aa622007-08-15 14:28:22 +00002363
Benjamin Petersone41251e2008-04-25 01:59:09 +00002364 If you want to specify a subject line which is record-dependent, override
2365 this method.
Georg Brandl116aa622007-08-15 14:28:22 +00002366
Vinay Sajipd31f3632010-06-29 15:31:15 +00002367.. _memory-handler:
Georg Brandl116aa622007-08-15 14:28:22 +00002368
2369MemoryHandler
2370^^^^^^^^^^^^^
2371
2372The :class:`MemoryHandler` class, located in the :mod:`logging.handlers` module,
2373supports buffering of logging records in memory, periodically flushing them to a
2374:dfn:`target` handler. Flushing occurs whenever the buffer is full, or when an
2375event of a certain severity or greater is seen.
2376
2377:class:`MemoryHandler` is a subclass of the more general
2378:class:`BufferingHandler`, which is an abstract class. This buffers logging
2379records in memory. Whenever each record is added to the buffer, a check is made
2380by calling :meth:`shouldFlush` to see if the buffer should be flushed. If it
2381should, then :meth:`flush` is expected to do the needful.
2382
2383
2384.. class:: BufferingHandler(capacity)
2385
2386 Initializes the handler with a buffer of the specified capacity.
2387
2388
Benjamin Petersone41251e2008-04-25 01:59:09 +00002389 .. method:: emit(record)
Georg Brandl116aa622007-08-15 14:28:22 +00002390
Benjamin Petersone41251e2008-04-25 01:59:09 +00002391 Appends the record to the buffer. If :meth:`shouldFlush` returns true,
2392 calls :meth:`flush` to process the buffer.
Georg Brandl116aa622007-08-15 14:28:22 +00002393
2394
Benjamin Petersone41251e2008-04-25 01:59:09 +00002395 .. method:: flush()
Georg Brandl116aa622007-08-15 14:28:22 +00002396
Benjamin Petersone41251e2008-04-25 01:59:09 +00002397 You can override this to implement custom flushing behavior. This version
2398 just zaps the buffer to empty.
Georg Brandl116aa622007-08-15 14:28:22 +00002399
2400
Benjamin Petersone41251e2008-04-25 01:59:09 +00002401 .. method:: shouldFlush(record)
Georg Brandl116aa622007-08-15 14:28:22 +00002402
Benjamin Petersone41251e2008-04-25 01:59:09 +00002403 Returns true if the buffer is up to capacity. This method can be
2404 overridden to implement custom flushing strategies.
Georg Brandl116aa622007-08-15 14:28:22 +00002405
2406
Georg Brandlcd7f32b2009-06-08 09:13:45 +00002407.. class:: MemoryHandler(capacity, flushLevel=ERROR, target=None)
Georg Brandl116aa622007-08-15 14:28:22 +00002408
2409 Returns a new instance of the :class:`MemoryHandler` class. The instance is
2410 initialized with a buffer size of *capacity*. If *flushLevel* is not specified,
2411 :const:`ERROR` is used. If no *target* is specified, the target will need to be
2412 set using :meth:`setTarget` before this handler does anything useful.
2413
2414
Benjamin Petersone41251e2008-04-25 01:59:09 +00002415 .. method:: close()
Georg Brandl116aa622007-08-15 14:28:22 +00002416
Benjamin Petersone41251e2008-04-25 01:59:09 +00002417 Calls :meth:`flush`, sets the target to :const:`None` and clears the
2418 buffer.
Georg Brandl116aa622007-08-15 14:28:22 +00002419
2420
Benjamin Petersone41251e2008-04-25 01:59:09 +00002421 .. method:: flush()
Georg Brandl116aa622007-08-15 14:28:22 +00002422
Benjamin Petersone41251e2008-04-25 01:59:09 +00002423 For a :class:`MemoryHandler`, flushing means just sending the buffered
2424 records to the target, if there is one. Override if you want different
2425 behavior.
Georg Brandl116aa622007-08-15 14:28:22 +00002426
2427
Benjamin Petersone41251e2008-04-25 01:59:09 +00002428 .. method:: setTarget(target)
Georg Brandl116aa622007-08-15 14:28:22 +00002429
Benjamin Petersone41251e2008-04-25 01:59:09 +00002430 Sets the target handler for this handler.
Georg Brandl116aa622007-08-15 14:28:22 +00002431
2432
Benjamin Petersone41251e2008-04-25 01:59:09 +00002433 .. method:: shouldFlush(record)
Georg Brandl116aa622007-08-15 14:28:22 +00002434
Benjamin Petersone41251e2008-04-25 01:59:09 +00002435 Checks for buffer full or a record at the *flushLevel* or higher.
Georg Brandl116aa622007-08-15 14:28:22 +00002436
2437
Vinay Sajipd31f3632010-06-29 15:31:15 +00002438.. _http-handler:
2439
Georg Brandl116aa622007-08-15 14:28:22 +00002440HTTPHandler
2441^^^^^^^^^^^
2442
2443The :class:`HTTPHandler` class, located in the :mod:`logging.handlers` module,
2444supports sending logging messages to a Web server, using either ``GET`` or
2445``POST`` semantics.
2446
2447
Georg Brandlcd7f32b2009-06-08 09:13:45 +00002448.. class:: HTTPHandler(host, url, method='GET')
Georg Brandl116aa622007-08-15 14:28:22 +00002449
2450 Returns a new instance of the :class:`HTTPHandler` class. The instance is
2451 initialized with a host address, url and HTTP method. The *host* can be of the
2452 form ``host:port``, should you need to use a specific port number. If no
2453 *method* is specified, ``GET`` is used.
2454
2455
Benjamin Petersone41251e2008-04-25 01:59:09 +00002456 .. method:: emit(record)
Georg Brandl116aa622007-08-15 14:28:22 +00002457
Senthil Kumaranf0769e82010-08-09 19:53:52 +00002458 Sends the record to the Web server as a percent-encoded dictionary.
Georg Brandl116aa622007-08-15 14:28:22 +00002459
2460
Christian Heimes8b0facf2007-12-04 19:30:01 +00002461.. _formatter-objects:
2462
Georg Brandl116aa622007-08-15 14:28:22 +00002463Formatter Objects
2464-----------------
2465
Benjamin Peterson75edad02009-01-01 15:05:06 +00002466.. currentmodule:: logging
2467
Georg Brandl116aa622007-08-15 14:28:22 +00002468:class:`Formatter`\ s have the following attributes and methods. They are
2469responsible for converting a :class:`LogRecord` to (usually) a string which can
2470be interpreted by either a human or an external system. The base
2471:class:`Formatter` allows a formatting string to be specified. If none is
2472supplied, the default value of ``'%(message)s'`` is used.
2473
2474A Formatter can be initialized with a format string which makes use of knowledge
2475of the :class:`LogRecord` attributes - such as the default value mentioned above
2476making use of the fact that the user's message and arguments are pre-formatted
2477into a :class:`LogRecord`'s *message* attribute. This format string contains
Ezio Melotti0639d5a2009-12-19 23:26:38 +00002478standard Python %-style mapping keys. See section :ref:`old-string-formatting`
Georg Brandl116aa622007-08-15 14:28:22 +00002479for more information on string formatting.
2480
2481Currently, the useful mapping keys in a :class:`LogRecord` are:
2482
2483+-------------------------+-----------------------------------------------+
2484| Format | Description |
2485+=========================+===============================================+
2486| ``%(name)s`` | Name of the logger (logging channel). |
2487+-------------------------+-----------------------------------------------+
2488| ``%(levelno)s`` | Numeric logging level for the message |
2489| | (:const:`DEBUG`, :const:`INFO`, |
2490| | :const:`WARNING`, :const:`ERROR`, |
2491| | :const:`CRITICAL`). |
2492+-------------------------+-----------------------------------------------+
2493| ``%(levelname)s`` | Text logging level for the message |
2494| | (``'DEBUG'``, ``'INFO'``, ``'WARNING'``, |
2495| | ``'ERROR'``, ``'CRITICAL'``). |
2496+-------------------------+-----------------------------------------------+
2497| ``%(pathname)s`` | Full pathname of the source file where the |
2498| | logging call was issued (if available). |
2499+-------------------------+-----------------------------------------------+
2500| ``%(filename)s`` | Filename portion of pathname. |
2501+-------------------------+-----------------------------------------------+
2502| ``%(module)s`` | Module (name portion of filename). |
2503+-------------------------+-----------------------------------------------+
2504| ``%(funcName)s`` | Name of function containing the logging call. |
2505+-------------------------+-----------------------------------------------+
2506| ``%(lineno)d`` | Source line number where the logging call was |
2507| | issued (if available). |
2508+-------------------------+-----------------------------------------------+
2509| ``%(created)f`` | Time when the :class:`LogRecord` was created |
2510| | (as returned by :func:`time.time`). |
2511+-------------------------+-----------------------------------------------+
2512| ``%(relativeCreated)d`` | Time in milliseconds when the LogRecord was |
2513| | created, relative to the time the logging |
2514| | module was loaded. |
2515+-------------------------+-----------------------------------------------+
2516| ``%(asctime)s`` | Human-readable time when the |
2517| | :class:`LogRecord` was created. By default |
2518| | this is of the form "2003-07-08 16:49:45,896" |
2519| | (the numbers after the comma are millisecond |
2520| | portion of the time). |
2521+-------------------------+-----------------------------------------------+
2522| ``%(msecs)d`` | Millisecond portion of the time when the |
2523| | :class:`LogRecord` was created. |
2524+-------------------------+-----------------------------------------------+
2525| ``%(thread)d`` | Thread ID (if available). |
2526+-------------------------+-----------------------------------------------+
2527| ``%(threadName)s`` | Thread name (if available). |
2528+-------------------------+-----------------------------------------------+
2529| ``%(process)d`` | Process ID (if available). |
2530+-------------------------+-----------------------------------------------+
2531| ``%(message)s`` | The logged message, computed as ``msg % |
2532| | args``. |
2533+-------------------------+-----------------------------------------------+
2534
Georg Brandl116aa622007-08-15 14:28:22 +00002535
Georg Brandlcd7f32b2009-06-08 09:13:45 +00002536.. class:: Formatter(fmt=None, datefmt=None)
Georg Brandl116aa622007-08-15 14:28:22 +00002537
Georg Brandlcd7f32b2009-06-08 09:13:45 +00002538 Returns a new instance of the :class:`Formatter` class. The instance is
2539 initialized with a format string for the message as a whole, as well as a
2540 format string for the date/time portion of a message. If no *fmt* is
2541 specified, ``'%(message)s'`` is used. If no *datefmt* is specified, the
2542 ISO8601 date format is used.
Georg Brandl116aa622007-08-15 14:28:22 +00002543
2544
Benjamin Petersone41251e2008-04-25 01:59:09 +00002545 .. method:: format(record)
Georg Brandl116aa622007-08-15 14:28:22 +00002546
Benjamin Petersone41251e2008-04-25 01:59:09 +00002547 The record's attribute dictionary is used as the operand to a string
2548 formatting operation. Returns the resulting string. Before formatting the
2549 dictionary, a couple of preparatory steps are carried out. The *message*
2550 attribute of the record is computed using *msg* % *args*. If the
2551 formatting string contains ``'(asctime)'``, :meth:`formatTime` is called
2552 to format the event time. If there is exception information, it is
2553 formatted using :meth:`formatException` and appended to the message. Note
2554 that the formatted exception information is cached in attribute
2555 *exc_text*. This is useful because the exception information can be
2556 pickled and sent across the wire, but you should be careful if you have
2557 more than one :class:`Formatter` subclass which customizes the formatting
2558 of exception information. In this case, you will have to clear the cached
2559 value after a formatter has done its formatting, so that the next
2560 formatter to handle the event doesn't use the cached value but
2561 recalculates it afresh.
Georg Brandl116aa622007-08-15 14:28:22 +00002562
2563
Georg Brandlcd7f32b2009-06-08 09:13:45 +00002564 .. method:: formatTime(record, datefmt=None)
Georg Brandl116aa622007-08-15 14:28:22 +00002565
Benjamin Petersone41251e2008-04-25 01:59:09 +00002566 This method should be called from :meth:`format` by a formatter which
2567 wants to make use of a formatted time. This method can be overridden in
2568 formatters to provide for any specific requirement, but the basic behavior
2569 is as follows: if *datefmt* (a string) is specified, it is used with
2570 :func:`time.strftime` to format the creation time of the
2571 record. Otherwise, the ISO8601 format is used. The resulting string is
2572 returned.
Georg Brandl116aa622007-08-15 14:28:22 +00002573
2574
Benjamin Petersone41251e2008-04-25 01:59:09 +00002575 .. method:: formatException(exc_info)
Georg Brandl116aa622007-08-15 14:28:22 +00002576
Benjamin Petersone41251e2008-04-25 01:59:09 +00002577 Formats the specified exception information (a standard exception tuple as
2578 returned by :func:`sys.exc_info`) as a string. This default implementation
2579 just uses :func:`traceback.print_exception`. The resulting string is
2580 returned.
Georg Brandl116aa622007-08-15 14:28:22 +00002581
Vinay Sajipd31f3632010-06-29 15:31:15 +00002582.. _filter:
Georg Brandl116aa622007-08-15 14:28:22 +00002583
2584Filter Objects
2585--------------
2586
2587:class:`Filter`\ s can be used by :class:`Handler`\ s and :class:`Logger`\ s for
2588more sophisticated filtering than is provided by levels. The base filter class
2589only allows events which are below a certain point in the logger hierarchy. For
2590example, a filter initialized with "A.B" will allow events logged by loggers
2591"A.B", "A.B.C", "A.B.C.D", "A.B.D" etc. but not "A.BB", "B.A.B" etc. If
2592initialized with the empty string, all events are passed.
2593
2594
Georg Brandlcd7f32b2009-06-08 09:13:45 +00002595.. class:: Filter(name='')
Georg Brandl116aa622007-08-15 14:28:22 +00002596
2597 Returns an instance of the :class:`Filter` class. If *name* is specified, it
2598 names a logger which, together with its children, will have its events allowed
Georg Brandlcd7f32b2009-06-08 09:13:45 +00002599 through the filter. If *name* is the empty string, allows every event.
Georg Brandl116aa622007-08-15 14:28:22 +00002600
2601
Benjamin Petersone41251e2008-04-25 01:59:09 +00002602 .. method:: filter(record)
Georg Brandl116aa622007-08-15 14:28:22 +00002603
Benjamin Petersone41251e2008-04-25 01:59:09 +00002604 Is the specified record to be logged? Returns zero for no, nonzero for
2605 yes. If deemed appropriate, the record may be modified in-place by this
2606 method.
Georg Brandl116aa622007-08-15 14:28:22 +00002607
Vinay Sajip81010212010-08-19 19:17:41 +00002608Note that filters attached to handlers are consulted whenever an event is
2609emitted by the handler, whereas filters attached to loggers are consulted
2610whenever an event is logged to the handler (using :meth:`debug`, :meth:`info`,
2611etc.) This means that events which have been generated by descendant loggers
2612will not be filtered by a logger's filter setting, unless the filter has also
2613been applied to those descendant loggers.
2614
Vinay Sajipd31f3632010-06-29 15:31:15 +00002615.. _log-record:
Georg Brandl116aa622007-08-15 14:28:22 +00002616
2617LogRecord Objects
2618-----------------
2619
2620:class:`LogRecord` instances are created every time something is logged. They
2621contain all the information pertinent to the event being logged. The main
2622information passed in is in msg and args, which are combined using msg % args to
2623create the message field of the record. The record also includes information
2624such as when the record was created, the source line where the logging call was
2625made, and any exception information to be logged.
2626
2627
Georg Brandlcd7f32b2009-06-08 09:13:45 +00002628.. class:: LogRecord(name, lvl, pathname, lineno, msg, args, exc_info, func=None)
Georg Brandl116aa622007-08-15 14:28:22 +00002629
2630 Returns an instance of :class:`LogRecord` initialized with interesting
2631 information. The *name* is the logger name; *lvl* is the numeric level;
2632 *pathname* is the absolute pathname of the source file in which the logging
2633 call was made; *lineno* is the line number in that file where the logging
2634 call is found; *msg* is the user-supplied message (a format string); *args*
2635 is the tuple which, together with *msg*, makes up the user message; and
2636 *exc_info* is the exception tuple obtained by calling :func:`sys.exc_info`
2637 (or :const:`None`, if no exception information is available). The *func* is
2638 the name of the function from which the logging call was made. If not
2639 specified, it defaults to ``None``.
2640
Georg Brandl116aa622007-08-15 14:28:22 +00002641
Benjamin Petersone41251e2008-04-25 01:59:09 +00002642 .. method:: getMessage()
Georg Brandl116aa622007-08-15 14:28:22 +00002643
Benjamin Petersone41251e2008-04-25 01:59:09 +00002644 Returns the message for this :class:`LogRecord` instance after merging any
2645 user-supplied arguments with the message.
2646
Vinay Sajipd31f3632010-06-29 15:31:15 +00002647.. _logger-adapter:
Georg Brandl116aa622007-08-15 14:28:22 +00002648
Christian Heimes04c420f2008-01-18 18:40:46 +00002649LoggerAdapter Objects
2650---------------------
2651
Christian Heimes04c420f2008-01-18 18:40:46 +00002652:class:`LoggerAdapter` instances are used to conveniently pass contextual
Georg Brandl86def6c2008-01-21 20:36:10 +00002653information into logging calls. For a usage example , see the section on
2654`adding contextual information to your logging output`__.
2655
2656__ context-info_
Christian Heimes04c420f2008-01-18 18:40:46 +00002657
2658.. class:: LoggerAdapter(logger, extra)
2659
2660 Returns an instance of :class:`LoggerAdapter` initialized with an
2661 underlying :class:`Logger` instance and a dict-like object.
2662
Benjamin Petersone41251e2008-04-25 01:59:09 +00002663 .. method:: process(msg, kwargs)
Christian Heimes04c420f2008-01-18 18:40:46 +00002664
Benjamin Petersone41251e2008-04-25 01:59:09 +00002665 Modifies the message and/or keyword arguments passed to a logging call in
2666 order to insert contextual information. This implementation takes the object
2667 passed as *extra* to the constructor and adds it to *kwargs* using key
2668 'extra'. The return value is a (*msg*, *kwargs*) tuple which has the
2669 (possibly modified) versions of the arguments passed in.
Christian Heimes04c420f2008-01-18 18:40:46 +00002670
2671In addition to the above, :class:`LoggerAdapter` supports all the logging
2672methods of :class:`Logger`, i.e. :meth:`debug`, :meth:`info`, :meth:`warning`,
2673:meth:`error`, :meth:`exception`, :meth:`critical` and :meth:`log`. These
2674methods have the same signatures as their counterparts in :class:`Logger`, so
2675you can use the two types of instances interchangeably.
2676
Ezio Melotti4d5195b2010-04-20 10:57:44 +00002677.. versionchanged:: 3.2
Georg Brandl67b21b72010-08-17 15:07:14 +00002678 The :meth:`isEnabledFor` method was added to :class:`LoggerAdapter`. This
2679 method delegates to the underlying logger.
Benjamin Peterson22005fc2010-04-11 16:25:06 +00002680
Georg Brandl116aa622007-08-15 14:28:22 +00002681
2682Thread Safety
2683-------------
2684
2685The logging module is intended to be thread-safe without any special work
2686needing to be done by its clients. It achieves this though using threading
2687locks; there is one lock to serialize access to the module's shared data, and
2688each handler also creates a lock to serialize access to its underlying I/O.
2689
Benjamin Petersond23f8222009-04-05 19:13:16 +00002690If you are implementing asynchronous signal handlers using the :mod:`signal`
2691module, you may not be able to use logging from within such handlers. This is
2692because lock implementations in the :mod:`threading` module are not always
2693re-entrant, and so cannot be invoked from such signal handlers.
Georg Brandl116aa622007-08-15 14:28:22 +00002694
Benjamin Peterson9451a1c2010-03-13 22:30:34 +00002695
2696Integration with the warnings module
2697------------------------------------
2698
2699The :func:`captureWarnings` function can be used to integrate :mod:`logging`
2700with the :mod:`warnings` module.
2701
2702.. function:: captureWarnings(capture)
2703
2704 This function is used to turn the capture of warnings by logging on and
2705 off.
2706
2707 If `capture` is `True`, warnings issued by the :mod:`warnings` module
2708 will be redirected to the logging system. Specifically, a warning will be
2709 formatted using :func:`warnings.formatwarning` and the resulting string
2710 logged to a logger named "py.warnings" with a severity of `WARNING`.
2711
2712 If `capture` is `False`, the redirection of warnings to the logging system
2713 will stop, and warnings will be redirected to their original destinations
2714 (i.e. those in effect before `captureWarnings(True)` was called).
2715
2716
Georg Brandl116aa622007-08-15 14:28:22 +00002717Configuration
2718-------------
2719
2720
2721.. _logging-config-api:
2722
2723Configuration functions
2724^^^^^^^^^^^^^^^^^^^^^^^
2725
Georg Brandl116aa622007-08-15 14:28:22 +00002726The following functions configure the logging module. They are located in the
2727:mod:`logging.config` module. Their use is optional --- you can configure the
2728logging module using these functions or by making calls to the main API (defined
2729in :mod:`logging` itself) and defining handlers which are declared either in
2730:mod:`logging` or :mod:`logging.handlers`.
2731
Benjamin Petersond7c3ed52010-06-27 22:32:30 +00002732.. function:: dictConfig(config)
Georg Brandl116aa622007-08-15 14:28:22 +00002733
Benjamin Petersond7c3ed52010-06-27 22:32:30 +00002734 Takes the logging configuration from a dictionary. The contents of
2735 this dictionary are described in :ref:`logging-config-dictschema`
2736 below.
2737
2738 If an error is encountered during configuration, this function will
2739 raise a :exc:`ValueError`, :exc:`TypeError`, :exc:`AttributeError`
2740 or :exc:`ImportError` with a suitably descriptive message. The
2741 following is a (possibly incomplete) list of conditions which will
2742 raise an error:
2743
2744 * A ``level`` which is not a string or which is a string not
2745 corresponding to an actual logging level.
2746 * A ``propagate`` value which is not a boolean.
2747 * An id which does not have a corresponding destination.
2748 * A non-existent handler id found during an incremental call.
2749 * An invalid logger name.
2750 * Inability to resolve to an internal or external object.
2751
2752 Parsing is performed by the :class:`DictConfigurator` class, whose
2753 constructor is passed the dictionary used for configuration, and
2754 has a :meth:`configure` method. The :mod:`logging.config` module
2755 has a callable attribute :attr:`dictConfigClass`
2756 which is initially set to :class:`DictConfigurator`.
2757 You can replace the value of :attr:`dictConfigClass` with a
2758 suitable implementation of your own.
2759
2760 :func:`dictConfig` calls :attr:`dictConfigClass` passing
2761 the specified dictionary, and then calls the :meth:`configure` method on
2762 the returned object to put the configuration into effect::
2763
2764 def dictConfig(config):
2765 dictConfigClass(config).configure()
2766
2767 For example, a subclass of :class:`DictConfigurator` could call
2768 ``DictConfigurator.__init__()`` in its own :meth:`__init__()`, then
2769 set up custom prefixes which would be usable in the subsequent
2770 :meth:`configure` call. :attr:`dictConfigClass` would be bound to
2771 this new subclass, and then :func:`dictConfig` could be called exactly as
2772 in the default, uncustomized state.
2773
2774.. function:: fileConfig(fname[, defaults])
Georg Brandl116aa622007-08-15 14:28:22 +00002775
Alexandre Vassalotti1d1eaa42008-05-14 22:59:42 +00002776 Reads the logging configuration from a :mod:`configparser`\-format file named
Benjamin Peterson960cf0f2009-01-09 04:11:44 +00002777 *fname*. This function can be called several times from an application,
Benjamin Petersond7c3ed52010-06-27 22:32:30 +00002778 allowing an end user to select from various pre-canned
Alexandre Vassalotti1d1eaa42008-05-14 22:59:42 +00002779 configurations (if the developer provides a mechanism to present the choices
2780 and load the chosen configuration). Defaults to be passed to the ConfigParser
2781 can be specified in the *defaults* argument.
Georg Brandl116aa622007-08-15 14:28:22 +00002782
Georg Brandlcd7f32b2009-06-08 09:13:45 +00002783
2784.. function:: listen(port=DEFAULT_LOGGING_CONFIG_PORT)
Georg Brandl116aa622007-08-15 14:28:22 +00002785
2786 Starts up a socket server on the specified port, and listens for new
2787 configurations. If no port is specified, the module's default
2788 :const:`DEFAULT_LOGGING_CONFIG_PORT` is used. Logging configurations will be
2789 sent as a file suitable for processing by :func:`fileConfig`. Returns a
2790 :class:`Thread` instance on which you can call :meth:`start` to start the
2791 server, and which you can :meth:`join` when appropriate. To stop the server,
Christian Heimes8b0facf2007-12-04 19:30:01 +00002792 call :func:`stopListening`.
2793
2794 To send a configuration to the socket, read in the configuration file and
2795 send it to the socket as a string of bytes preceded by a four-byte length
2796 string packed in binary using ``struct.pack('>L', n)``.
Georg Brandl116aa622007-08-15 14:28:22 +00002797
2798
2799.. function:: stopListening()
2800
Christian Heimes8b0facf2007-12-04 19:30:01 +00002801 Stops the listening server which was created with a call to :func:`listen`.
2802 This is typically called before calling :meth:`join` on the return value from
Georg Brandl116aa622007-08-15 14:28:22 +00002803 :func:`listen`.
2804
2805
Benjamin Petersond7c3ed52010-06-27 22:32:30 +00002806.. _logging-config-dictschema:
2807
2808Configuration dictionary schema
2809^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
2810
2811Describing a logging configuration requires listing the various
2812objects to create and the connections between them; for example, you
2813may create a handler named "console" and then say that the logger
2814named "startup" will send its messages to the "console" handler.
2815These objects aren't limited to those provided by the :mod:`logging`
2816module because you might write your own formatter or handler class.
2817The parameters to these classes may also need to include external
2818objects such as ``sys.stderr``. The syntax for describing these
2819objects and connections is defined in :ref:`logging-config-dict-connections`
2820below.
2821
2822Dictionary Schema Details
2823"""""""""""""""""""""""""
2824
2825The dictionary passed to :func:`dictConfig` must contain the following
2826keys:
2827
2828* `version` - to be set to an integer value representing the schema
2829 version. The only valid value at present is 1, but having this key
2830 allows the schema to evolve while still preserving backwards
2831 compatibility.
2832
2833All other keys are optional, but if present they will be interpreted
2834as described below. In all cases below where a 'configuring dict' is
2835mentioned, it will be checked for the special ``'()'`` key to see if a
2836custom instantiation is required. If so, the mechanism described in
2837:ref:`logging-config-dict-userdef` below is used to create an instance;
2838otherwise, the context is used to determine what to instantiate.
2839
2840* `formatters` - the corresponding value will be a dict in which each
2841 key is a formatter id and each value is a dict describing how to
2842 configure the corresponding Formatter instance.
2843
2844 The configuring dict is searched for keys ``format`` and ``datefmt``
2845 (with defaults of ``None``) and these are used to construct a
2846 :class:`logging.Formatter` instance.
2847
2848* `filters` - the corresponding value will be a dict in which each key
2849 is a filter id and each value is a dict describing how to configure
2850 the corresponding Filter instance.
2851
2852 The configuring dict is searched for the key ``name`` (defaulting to the
2853 empty string) and this is used to construct a :class:`logging.Filter`
2854 instance.
2855
2856* `handlers` - the corresponding value will be a dict in which each
2857 key is a handler id and each value is a dict describing how to
2858 configure the corresponding Handler instance.
2859
2860 The configuring dict is searched for the following keys:
2861
2862 * ``class`` (mandatory). This is the fully qualified name of the
2863 handler class.
2864
2865 * ``level`` (optional). The level of the handler.
2866
2867 * ``formatter`` (optional). The id of the formatter for this
2868 handler.
2869
2870 * ``filters`` (optional). A list of ids of the filters for this
2871 handler.
2872
2873 All *other* keys are passed through as keyword arguments to the
2874 handler's constructor. For example, given the snippet::
2875
2876 handlers:
2877 console:
2878 class : logging.StreamHandler
2879 formatter: brief
2880 level : INFO
2881 filters: [allow_foo]
2882 stream : ext://sys.stdout
2883 file:
2884 class : logging.handlers.RotatingFileHandler
2885 formatter: precise
2886 filename: logconfig.log
2887 maxBytes: 1024
2888 backupCount: 3
2889
2890 the handler with id ``console`` is instantiated as a
2891 :class:`logging.StreamHandler`, using ``sys.stdout`` as the underlying
2892 stream. The handler with id ``file`` is instantiated as a
2893 :class:`logging.handlers.RotatingFileHandler` with the keyword arguments
2894 ``filename='logconfig.log', maxBytes=1024, backupCount=3``.
2895
2896* `loggers` - the corresponding value will be a dict in which each key
2897 is a logger name and each value is a dict describing how to
2898 configure the corresponding Logger instance.
2899
2900 The configuring dict is searched for the following keys:
2901
2902 * ``level`` (optional). The level of the logger.
2903
2904 * ``propagate`` (optional). The propagation setting of the logger.
2905
2906 * ``filters`` (optional). A list of ids of the filters for this
2907 logger.
2908
2909 * ``handlers`` (optional). A list of ids of the handlers for this
2910 logger.
2911
2912 The specified loggers will be configured according to the level,
2913 propagation, filters and handlers specified.
2914
2915* `root` - this will be the configuration for the root logger.
2916 Processing of the configuration will be as for any logger, except
2917 that the ``propagate`` setting will not be applicable.
2918
2919* `incremental` - whether the configuration is to be interpreted as
2920 incremental to the existing configuration. This value defaults to
2921 ``False``, which means that the specified configuration replaces the
2922 existing configuration with the same semantics as used by the
2923 existing :func:`fileConfig` API.
2924
2925 If the specified value is ``True``, the configuration is processed
2926 as described in the section on :ref:`logging-config-dict-incremental`.
2927
2928* `disable_existing_loggers` - whether any existing loggers are to be
2929 disabled. This setting mirrors the parameter of the same name in
2930 :func:`fileConfig`. If absent, this parameter defaults to ``True``.
2931 This value is ignored if `incremental` is ``True``.
2932
2933.. _logging-config-dict-incremental:
2934
2935Incremental Configuration
2936"""""""""""""""""""""""""
2937
2938It is difficult to provide complete flexibility for incremental
2939configuration. For example, because objects such as filters
2940and formatters are anonymous, once a configuration is set up, it is
2941not possible to refer to such anonymous objects when augmenting a
2942configuration.
2943
2944Furthermore, there is not a compelling case for arbitrarily altering
2945the object graph of loggers, handlers, filters, formatters at
2946run-time, once a configuration is set up; the verbosity of loggers and
2947handlers can be controlled just by setting levels (and, in the case of
2948loggers, propagation flags). Changing the object graph arbitrarily in
2949a safe way is problematic in a multi-threaded environment; while not
2950impossible, the benefits are not worth the complexity it adds to the
2951implementation.
2952
2953Thus, when the ``incremental`` key of a configuration dict is present
2954and is ``True``, the system will completely ignore any ``formatters`` and
2955``filters`` entries, and process only the ``level``
2956settings in the ``handlers`` entries, and the ``level`` and
2957``propagate`` settings in the ``loggers`` and ``root`` entries.
2958
2959Using a value in the configuration dict lets configurations to be sent
2960over the wire as pickled dicts to a socket listener. Thus, the logging
2961verbosity of a long-running application can be altered over time with
2962no need to stop and restart the application.
2963
2964.. _logging-config-dict-connections:
2965
2966Object connections
2967""""""""""""""""""
2968
2969The schema describes a set of logging objects - loggers,
2970handlers, formatters, filters - which are connected to each other in
2971an object graph. Thus, the schema needs to represent connections
2972between the objects. For example, say that, once configured, a
2973particular logger has attached to it a particular handler. For the
2974purposes of this discussion, we can say that the logger represents the
2975source, and the handler the destination, of a connection between the
2976two. Of course in the configured objects this is represented by the
2977logger holding a reference to the handler. In the configuration dict,
2978this is done by giving each destination object an id which identifies
2979it unambiguously, and then using the id in the source object's
2980configuration to indicate that a connection exists between the source
2981and the destination object with that id.
2982
2983So, for example, consider the following YAML snippet::
2984
2985 formatters:
2986 brief:
2987 # configuration for formatter with id 'brief' goes here
2988 precise:
2989 # configuration for formatter with id 'precise' goes here
2990 handlers:
2991 h1: #This is an id
2992 # configuration of handler with id 'h1' goes here
2993 formatter: brief
2994 h2: #This is another id
2995 # configuration of handler with id 'h2' goes here
2996 formatter: precise
2997 loggers:
2998 foo.bar.baz:
2999 # other configuration for logger 'foo.bar.baz'
3000 handlers: [h1, h2]
3001
3002(Note: YAML used here because it's a little more readable than the
3003equivalent Python source form for the dictionary.)
3004
3005The ids for loggers are the logger names which would be used
3006programmatically to obtain a reference to those loggers, e.g.
3007``foo.bar.baz``. The ids for Formatters and Filters can be any string
3008value (such as ``brief``, ``precise`` above) and they are transient,
3009in that they are only meaningful for processing the configuration
3010dictionary and used to determine connections between objects, and are
3011not persisted anywhere when the configuration call is complete.
3012
3013The above snippet indicates that logger named ``foo.bar.baz`` should
3014have two handlers attached to it, which are described by the handler
3015ids ``h1`` and ``h2``. The formatter for ``h1`` is that described by id
3016``brief``, and the formatter for ``h2`` is that described by id
3017``precise``.
3018
3019
3020.. _logging-config-dict-userdef:
3021
3022User-defined objects
3023""""""""""""""""""""
3024
3025The schema supports user-defined objects for handlers, filters and
3026formatters. (Loggers do not need to have different types for
3027different instances, so there is no support in this configuration
3028schema for user-defined logger classes.)
3029
3030Objects to be configured are described by dictionaries
3031which detail their configuration. In some places, the logging system
3032will be able to infer from the context how an object is to be
3033instantiated, but when a user-defined object is to be instantiated,
3034the system will not know how to do this. In order to provide complete
3035flexibility for user-defined object instantiation, the user needs
3036to provide a 'factory' - a callable which is called with a
3037configuration dictionary and which returns the instantiated object.
3038This is signalled by an absolute import path to the factory being
3039made available under the special key ``'()'``. Here's a concrete
3040example::
3041
3042 formatters:
3043 brief:
3044 format: '%(message)s'
3045 default:
3046 format: '%(asctime)s %(levelname)-8s %(name)-15s %(message)s'
3047 datefmt: '%Y-%m-%d %H:%M:%S'
3048 custom:
3049 (): my.package.customFormatterFactory
3050 bar: baz
3051 spam: 99.9
3052 answer: 42
3053
3054The above YAML snippet defines three formatters. The first, with id
3055``brief``, is a standard :class:`logging.Formatter` instance with the
3056specified format string. The second, with id ``default``, has a
3057longer format and also defines the time format explicitly, and will
3058result in a :class:`logging.Formatter` initialized with those two format
3059strings. Shown in Python source form, the ``brief`` and ``default``
3060formatters have configuration sub-dictionaries::
3061
3062 {
3063 'format' : '%(message)s'
3064 }
3065
3066and::
3067
3068 {
3069 'format' : '%(asctime)s %(levelname)-8s %(name)-15s %(message)s',
3070 'datefmt' : '%Y-%m-%d %H:%M:%S'
3071 }
3072
3073respectively, and as these dictionaries do not contain the special key
3074``'()'``, the instantiation is inferred from the context: as a result,
3075standard :class:`logging.Formatter` instances are created. The
3076configuration sub-dictionary for the third formatter, with id
3077``custom``, is::
3078
3079 {
3080 '()' : 'my.package.customFormatterFactory',
3081 'bar' : 'baz',
3082 'spam' : 99.9,
3083 'answer' : 42
3084 }
3085
3086and this contains the special key ``'()'``, which means that
3087user-defined instantiation is wanted. In this case, the specified
3088factory callable will be used. If it is an actual callable it will be
3089used directly - otherwise, if you specify a string (as in the example)
3090the actual callable will be located using normal import mechanisms.
3091The callable will be called with the **remaining** items in the
3092configuration sub-dictionary as keyword arguments. In the above
3093example, the formatter with id ``custom`` will be assumed to be
3094returned by the call::
3095
3096 my.package.customFormatterFactory(bar='baz', spam=99.9, answer=42)
3097
3098The key ``'()'`` has been used as the special key because it is not a
3099valid keyword parameter name, and so will not clash with the names of
3100the keyword arguments used in the call. The ``'()'`` also serves as a
3101mnemonic that the corresponding value is a callable.
3102
3103
3104.. _logging-config-dict-externalobj:
3105
3106Access to external objects
3107""""""""""""""""""""""""""
3108
3109There are times where a configuration needs to refer to objects
3110external to the configuration, for example ``sys.stderr``. If the
3111configuration dict is constructed using Python code, this is
3112straightforward, but a problem arises when the configuration is
3113provided via a text file (e.g. JSON, YAML). In a text file, there is
3114no standard way to distinguish ``sys.stderr`` from the literal string
3115``'sys.stderr'``. To facilitate this distinction, the configuration
3116system looks for certain special prefixes in string values and
3117treat them specially. For example, if the literal string
3118``'ext://sys.stderr'`` is provided as a value in the configuration,
3119then the ``ext://`` will be stripped off and the remainder of the
3120value processed using normal import mechanisms.
3121
3122The handling of such prefixes is done in a way analogous to protocol
3123handling: there is a generic mechanism to look for prefixes which
3124match the regular expression ``^(?P<prefix>[a-z]+)://(?P<suffix>.*)$``
3125whereby, if the ``prefix`` is recognised, the ``suffix`` is processed
3126in a prefix-dependent manner and the result of the processing replaces
3127the string value. If the prefix is not recognised, then the string
3128value will be left as-is.
3129
3130
3131.. _logging-config-dict-internalobj:
3132
3133Access to internal objects
3134""""""""""""""""""""""""""
3135
3136As well as external objects, there is sometimes also a need to refer
3137to objects in the configuration. This will be done implicitly by the
3138configuration system for things that it knows about. For example, the
3139string value ``'DEBUG'`` for a ``level`` in a logger or handler will
3140automatically be converted to the value ``logging.DEBUG``, and the
3141``handlers``, ``filters`` and ``formatter`` entries will take an
3142object id and resolve to the appropriate destination object.
3143
3144However, a more generic mechanism is needed for user-defined
3145objects which are not known to the :mod:`logging` module. For
3146example, consider :class:`logging.handlers.MemoryHandler`, which takes
3147a ``target`` argument which is another handler to delegate to. Since
3148the system already knows about this class, then in the configuration,
3149the given ``target`` just needs to be the object id of the relevant
3150target handler, and the system will resolve to the handler from the
3151id. If, however, a user defines a ``my.package.MyHandler`` which has
3152an ``alternate`` handler, the configuration system would not know that
3153the ``alternate`` referred to a handler. To cater for this, a generic
3154resolution system allows the user to specify::
3155
3156 handlers:
3157 file:
3158 # configuration of file handler goes here
3159
3160 custom:
3161 (): my.package.MyHandler
3162 alternate: cfg://handlers.file
3163
3164The literal string ``'cfg://handlers.file'`` will be resolved in an
3165analogous way to strings with the ``ext://`` prefix, but looking
3166in the configuration itself rather than the import namespace. The
3167mechanism allows access by dot or by index, in a similar way to
3168that provided by ``str.format``. Thus, given the following snippet::
3169
3170 handlers:
3171 email:
3172 class: logging.handlers.SMTPHandler
3173 mailhost: localhost
3174 fromaddr: my_app@domain.tld
3175 toaddrs:
3176 - support_team@domain.tld
3177 - dev_team@domain.tld
3178 subject: Houston, we have a problem.
3179
3180in the configuration, the string ``'cfg://handlers'`` would resolve to
3181the dict with key ``handlers``, the string ``'cfg://handlers.email``
3182would resolve to the dict with key ``email`` in the ``handlers`` dict,
3183and so on. The string ``'cfg://handlers.email.toaddrs[1]`` would
3184resolve to ``'dev_team.domain.tld'`` and the string
3185``'cfg://handlers.email.toaddrs[0]'`` would resolve to the value
3186``'support_team@domain.tld'``. The ``subject`` value could be accessed
3187using either ``'cfg://handlers.email.subject'`` or, equivalently,
3188``'cfg://handlers.email[subject]'``. The latter form only needs to be
3189used if the key contains spaces or non-alphanumeric characters. If an
3190index value consists only of decimal digits, access will be attempted
3191using the corresponding integer value, falling back to the string
3192value if needed.
3193
3194Given a string ``cfg://handlers.myhandler.mykey.123``, this will
3195resolve to ``config_dict['handlers']['myhandler']['mykey']['123']``.
3196If the string is specified as ``cfg://handlers.myhandler.mykey[123]``,
3197the system will attempt to retrieve the value from
3198``config_dict['handlers']['myhandler']['mykey'][123]``, and fall back
3199to ``config_dict['handlers']['myhandler']['mykey']['123']`` if that
3200fails.
3201
Georg Brandl116aa622007-08-15 14:28:22 +00003202.. _logging-config-fileformat:
3203
3204Configuration file format
3205^^^^^^^^^^^^^^^^^^^^^^^^^
3206
Benjamin Peterson960cf0f2009-01-09 04:11:44 +00003207The configuration file format understood by :func:`fileConfig` is based on
3208:mod:`configparser` functionality. The file must contain sections called
3209``[loggers]``, ``[handlers]`` and ``[formatters]`` which identify by name the
3210entities of each type which are defined in the file. For each such entity, there
3211is a separate section which identifies how that entity is configured. Thus, for
3212a logger named ``log01`` in the ``[loggers]`` section, the relevant
3213configuration details are held in a section ``[logger_log01]``. Similarly, a
3214handler called ``hand01`` in the ``[handlers]`` section will have its
3215configuration held in a section called ``[handler_hand01]``, while a formatter
3216called ``form01`` in the ``[formatters]`` section will have its configuration
3217specified in a section called ``[formatter_form01]``. The root logger
3218configuration must be specified in a section called ``[logger_root]``.
Georg Brandl116aa622007-08-15 14:28:22 +00003219
3220Examples of these sections in the file are given below. ::
3221
3222 [loggers]
3223 keys=root,log02,log03,log04,log05,log06,log07
3224
3225 [handlers]
3226 keys=hand01,hand02,hand03,hand04,hand05,hand06,hand07,hand08,hand09
3227
3228 [formatters]
3229 keys=form01,form02,form03,form04,form05,form06,form07,form08,form09
3230
3231The root logger must specify a level and a list of handlers. An example of a
3232root logger section is given below. ::
3233
3234 [logger_root]
3235 level=NOTSET
3236 handlers=hand01
3237
3238The ``level`` entry can be one of ``DEBUG, INFO, WARNING, ERROR, CRITICAL`` or
3239``NOTSET``. For the root logger only, ``NOTSET`` means that all messages will be
3240logged. Level values are :func:`eval`\ uated in the context of the ``logging``
3241package's namespace.
3242
3243The ``handlers`` entry is a comma-separated list of handler names, which must
3244appear in the ``[handlers]`` section. These names must appear in the
3245``[handlers]`` section and have corresponding sections in the configuration
3246file.
3247
3248For loggers other than the root logger, some additional information is required.
3249This is illustrated by the following example. ::
3250
3251 [logger_parser]
3252 level=DEBUG
3253 handlers=hand01
3254 propagate=1
3255 qualname=compiler.parser
3256
3257The ``level`` and ``handlers`` entries are interpreted as for the root logger,
3258except that if a non-root logger's level is specified as ``NOTSET``, the system
3259consults loggers higher up the hierarchy to determine the effective level of the
3260logger. The ``propagate`` entry is set to 1 to indicate that messages must
3261propagate to handlers higher up the logger hierarchy from this logger, or 0 to
3262indicate that messages are **not** propagated to handlers up the hierarchy. The
3263``qualname`` entry is the hierarchical channel name of the logger, that is to
3264say the name used by the application to get the logger.
3265
3266Sections which specify handler configuration are exemplified by the following.
3267::
3268
3269 [handler_hand01]
3270 class=StreamHandler
3271 level=NOTSET
3272 formatter=form01
3273 args=(sys.stdout,)
3274
3275The ``class`` entry indicates the handler's class (as determined by :func:`eval`
3276in the ``logging`` package's namespace). The ``level`` is interpreted as for
3277loggers, and ``NOTSET`` is taken to mean "log everything".
3278
3279The ``formatter`` entry indicates the key name of the formatter for this
3280handler. If blank, a default formatter (``logging._defaultFormatter``) is used.
3281If a name is specified, it must appear in the ``[formatters]`` section and have
3282a corresponding section in the configuration file.
3283
3284The ``args`` entry, when :func:`eval`\ uated in the context of the ``logging``
3285package's namespace, is the list of arguments to the constructor for the handler
3286class. Refer to the constructors for the relevant handlers, or to the examples
3287below, to see how typical entries are constructed. ::
3288
3289 [handler_hand02]
3290 class=FileHandler
3291 level=DEBUG
3292 formatter=form02
3293 args=('python.log', 'w')
3294
3295 [handler_hand03]
3296 class=handlers.SocketHandler
3297 level=INFO
3298 formatter=form03
3299 args=('localhost', handlers.DEFAULT_TCP_LOGGING_PORT)
3300
3301 [handler_hand04]
3302 class=handlers.DatagramHandler
3303 level=WARN
3304 formatter=form04
3305 args=('localhost', handlers.DEFAULT_UDP_LOGGING_PORT)
3306
3307 [handler_hand05]
3308 class=handlers.SysLogHandler
3309 level=ERROR
3310 formatter=form05
3311 args=(('localhost', handlers.SYSLOG_UDP_PORT), handlers.SysLogHandler.LOG_USER)
3312
3313 [handler_hand06]
3314 class=handlers.NTEventLogHandler
3315 level=CRITICAL
3316 formatter=form06
3317 args=('Python Application', '', 'Application')
3318
3319 [handler_hand07]
3320 class=handlers.SMTPHandler
3321 level=WARN
3322 formatter=form07
3323 args=('localhost', 'from@abc', ['user1@abc', 'user2@xyz'], 'Logger Subject')
3324
3325 [handler_hand08]
3326 class=handlers.MemoryHandler
3327 level=NOTSET
3328 formatter=form08
3329 target=
3330 args=(10, ERROR)
3331
3332 [handler_hand09]
3333 class=handlers.HTTPHandler
3334 level=NOTSET
3335 formatter=form09
3336 args=('localhost:9022', '/log', 'GET')
3337
3338Sections which specify formatter configuration are typified by the following. ::
3339
3340 [formatter_form01]
3341 format=F1 %(asctime)s %(levelname)s %(message)s
3342 datefmt=
3343 class=logging.Formatter
3344
3345The ``format`` entry is the overall format string, and the ``datefmt`` entry is
Christian Heimes5b5e81c2007-12-31 16:14:33 +00003346the :func:`strftime`\ -compatible date/time format string. If empty, the
3347package substitutes ISO8601 format date/times, which is almost equivalent to
3348specifying the date format string ``"%Y-%m-%d %H:%M:%S"``. The ISO8601 format
3349also specifies milliseconds, which are appended to the result of using the above
3350format string, with a comma separator. An example time in ISO8601 format is
3351``2003-01-23 00:29:50,411``.
Georg Brandl116aa622007-08-15 14:28:22 +00003352
3353The ``class`` entry is optional. It indicates the name of the formatter's class
3354(as a dotted module and class name.) This option is useful for instantiating a
3355:class:`Formatter` subclass. Subclasses of :class:`Formatter` can present
3356exception tracebacks in an expanded or condensed format.
3357
Christian Heimes8b0facf2007-12-04 19:30:01 +00003358
3359Configuration server example
3360^^^^^^^^^^^^^^^^^^^^^^^^^^^^
3361
3362Here is an example of a module using the logging configuration server::
3363
3364 import logging
3365 import logging.config
3366 import time
3367 import os
3368
3369 # read initial config file
3370 logging.config.fileConfig("logging.conf")
3371
3372 # create and start listener on port 9999
3373 t = logging.config.listen(9999)
3374 t.start()
3375
3376 logger = logging.getLogger("simpleExample")
3377
3378 try:
3379 # loop through logging calls to see the difference
3380 # new configurations make, until Ctrl+C is pressed
3381 while True:
3382 logger.debug("debug message")
3383 logger.info("info message")
3384 logger.warn("warn message")
3385 logger.error("error message")
3386 logger.critical("critical message")
3387 time.sleep(5)
3388 except KeyboardInterrupt:
3389 # cleanup
3390 logging.config.stopListening()
3391 t.join()
3392
3393And here is a script that takes a filename and sends that file to the server,
3394properly preceded with the binary-encoded length, as the new logging
3395configuration::
3396
3397 #!/usr/bin/env python
3398 import socket, sys, struct
3399
3400 data_to_send = open(sys.argv[1], "r").read()
3401
3402 HOST = 'localhost'
3403 PORT = 9999
3404 s = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
Georg Brandlf6945182008-02-01 11:56:49 +00003405 print("connecting...")
Christian Heimes8b0facf2007-12-04 19:30:01 +00003406 s.connect((HOST, PORT))
Georg Brandlf6945182008-02-01 11:56:49 +00003407 print("sending config...")
Christian Heimes8b0facf2007-12-04 19:30:01 +00003408 s.send(struct.pack(">L", len(data_to_send)))
3409 s.send(data_to_send)
3410 s.close()
Georg Brandlf6945182008-02-01 11:56:49 +00003411 print("complete")
Christian Heimes8b0facf2007-12-04 19:30:01 +00003412
3413
3414More examples
3415-------------
3416
3417Multiple handlers and formatters
3418^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
3419
3420Loggers are plain Python objects. The :func:`addHandler` method has no minimum
3421or maximum quota for the number of handlers you may add. Sometimes it will be
3422beneficial for an application to log all messages of all severities to a text
3423file while simultaneously logging errors or above to the console. To set this
3424up, simply configure the appropriate handlers. The logging calls in the
3425application code will remain unchanged. Here is a slight modification to the
3426previous simple module-based configuration example::
3427
3428 import logging
3429
3430 logger = logging.getLogger("simple_example")
3431 logger.setLevel(logging.DEBUG)
3432 # create file handler which logs even debug messages
3433 fh = logging.FileHandler("spam.log")
3434 fh.setLevel(logging.DEBUG)
3435 # create console handler with a higher log level
3436 ch = logging.StreamHandler()
3437 ch.setLevel(logging.ERROR)
3438 # create formatter and add it to the handlers
3439 formatter = logging.Formatter("%(asctime)s - %(name)s - %(levelname)s - %(message)s")
3440 ch.setFormatter(formatter)
3441 fh.setFormatter(formatter)
3442 # add the handlers to logger
3443 logger.addHandler(ch)
3444 logger.addHandler(fh)
3445
3446 # "application" code
3447 logger.debug("debug message")
3448 logger.info("info message")
3449 logger.warn("warn message")
3450 logger.error("error message")
3451 logger.critical("critical message")
3452
3453Notice that the "application" code does not care about multiple handlers. All
3454that changed was the addition and configuration of a new handler named *fh*.
3455
3456The ability to create new handlers with higher- or lower-severity filters can be
3457very helpful when writing and testing an application. Instead of using many
3458``print`` statements for debugging, use ``logger.debug``: Unlike the print
3459statements, which you will have to delete or comment out later, the logger.debug
3460statements can remain intact in the source code and remain dormant until you
3461need them again. At that time, the only change that needs to happen is to
3462modify the severity level of the logger and/or handler to debug.
3463
3464
3465Using logging in multiple modules
3466^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
3467
3468It was mentioned above that multiple calls to
3469``logging.getLogger('someLogger')`` return a reference to the same logger
3470object. This is true not only within the same module, but also across modules
3471as long as it is in the same Python interpreter process. It is true for
3472references to the same object; additionally, application code can define and
3473configure a parent logger in one module and create (but not configure) a child
3474logger in a separate module, and all logger calls to the child will pass up to
3475the parent. Here is a main module::
3476
3477 import logging
3478 import auxiliary_module
3479
3480 # create logger with "spam_application"
3481 logger = logging.getLogger("spam_application")
3482 logger.setLevel(logging.DEBUG)
3483 # create file handler which logs even debug messages
3484 fh = logging.FileHandler("spam.log")
3485 fh.setLevel(logging.DEBUG)
3486 # create console handler with a higher log level
3487 ch = logging.StreamHandler()
3488 ch.setLevel(logging.ERROR)
3489 # create formatter and add it to the handlers
3490 formatter = logging.Formatter("%(asctime)s - %(name)s - %(levelname)s - %(message)s")
3491 fh.setFormatter(formatter)
3492 ch.setFormatter(formatter)
3493 # add the handlers to the logger
3494 logger.addHandler(fh)
3495 logger.addHandler(ch)
3496
3497 logger.info("creating an instance of auxiliary_module.Auxiliary")
3498 a = auxiliary_module.Auxiliary()
3499 logger.info("created an instance of auxiliary_module.Auxiliary")
3500 logger.info("calling auxiliary_module.Auxiliary.do_something")
3501 a.do_something()
3502 logger.info("finished auxiliary_module.Auxiliary.do_something")
3503 logger.info("calling auxiliary_module.some_function()")
3504 auxiliary_module.some_function()
3505 logger.info("done with auxiliary_module.some_function()")
3506
3507Here is the auxiliary module::
3508
3509 import logging
3510
3511 # create logger
3512 module_logger = logging.getLogger("spam_application.auxiliary")
3513
3514 class Auxiliary:
3515 def __init__(self):
3516 self.logger = logging.getLogger("spam_application.auxiliary.Auxiliary")
3517 self.logger.info("creating an instance of Auxiliary")
3518 def do_something(self):
3519 self.logger.info("doing something")
3520 a = 1 + 1
3521 self.logger.info("done doing something")
3522
3523 def some_function():
3524 module_logger.info("received a call to \"some_function\"")
3525
3526The output looks like this::
3527
Christian Heimes043d6f62008-01-07 17:19:16 +00003528 2005-03-23 23:47:11,663 - spam_application - INFO -
Christian Heimes8b0facf2007-12-04 19:30:01 +00003529 creating an instance of auxiliary_module.Auxiliary
Christian Heimes043d6f62008-01-07 17:19:16 +00003530 2005-03-23 23:47:11,665 - spam_application.auxiliary.Auxiliary - INFO -
Christian Heimes8b0facf2007-12-04 19:30:01 +00003531 creating an instance of Auxiliary
Christian Heimes043d6f62008-01-07 17:19:16 +00003532 2005-03-23 23:47:11,665 - spam_application - INFO -
Christian Heimes8b0facf2007-12-04 19:30:01 +00003533 created an instance of auxiliary_module.Auxiliary
Christian Heimes043d6f62008-01-07 17:19:16 +00003534 2005-03-23 23:47:11,668 - spam_application - INFO -
Christian Heimes8b0facf2007-12-04 19:30:01 +00003535 calling auxiliary_module.Auxiliary.do_something
Christian Heimes043d6f62008-01-07 17:19:16 +00003536 2005-03-23 23:47:11,668 - spam_application.auxiliary.Auxiliary - INFO -
Christian Heimes8b0facf2007-12-04 19:30:01 +00003537 doing something
Christian Heimes043d6f62008-01-07 17:19:16 +00003538 2005-03-23 23:47:11,669 - spam_application.auxiliary.Auxiliary - INFO -
Christian Heimes8b0facf2007-12-04 19:30:01 +00003539 done doing something
Christian Heimes043d6f62008-01-07 17:19:16 +00003540 2005-03-23 23:47:11,670 - spam_application - INFO -
Christian Heimes8b0facf2007-12-04 19:30:01 +00003541 finished auxiliary_module.Auxiliary.do_something
Christian Heimes043d6f62008-01-07 17:19:16 +00003542 2005-03-23 23:47:11,671 - spam_application - INFO -
Christian Heimes8b0facf2007-12-04 19:30:01 +00003543 calling auxiliary_module.some_function()
Christian Heimes043d6f62008-01-07 17:19:16 +00003544 2005-03-23 23:47:11,672 - spam_application.auxiliary - INFO -
Christian Heimes8b0facf2007-12-04 19:30:01 +00003545 received a call to "some_function"
Christian Heimes043d6f62008-01-07 17:19:16 +00003546 2005-03-23 23:47:11,673 - spam_application - INFO -
Christian Heimes8b0facf2007-12-04 19:30:01 +00003547 done with auxiliary_module.some_function()
3548