blob: ac462fe55ccbad585ec14c2b71f6faecd9a3445d [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
56default handler so that debug messages are written to a file::
57
58 import logging
59 LOG_FILENAME = '/tmp/logging_example.out'
60 logging.basicConfig(filename=LOG_FILENAME,level=logging.DEBUG,)
61
62 logging.debug('This message should go to the log file')
63
64And now if we open the file and look at what we have, we should find the log
65message::
66
67 DEBUG:root:This message should go to the log file
68
69If you run the script repeatedly, the additional log messages are appended to
70the file. To create a new file each time, you can pass a filemode argument to
71:func:`basicConfig` with a value of ``'w'``. Rather than managing the file size
72yourself, though, it is simpler to use a :class:`RotatingFileHandler`::
73
74 import glob
75 import logging
76 import logging.handlers
77
78 LOG_FILENAME = '/tmp/logging_rotatingfile_example.out'
79
80 # Set up a specific logger with our desired output level
81 my_logger = logging.getLogger('MyLogger')
82 my_logger.setLevel(logging.DEBUG)
83
84 # Add the log message handler to the logger
85 handler = logging.handlers.RotatingFileHandler(
86 LOG_FILENAME, maxBytes=20, backupCount=5)
87
88 my_logger.addHandler(handler)
89
90 # Log some messages
91 for i in range(20):
92 my_logger.debug('i = %d' % i)
93
94 # See what files are created
95 logfiles = glob.glob('%s*' % LOG_FILENAME)
96
97 for filename in logfiles:
Georg Brandlf6945182008-02-01 11:56:49 +000098 print(filename)
Christian Heimes8b0facf2007-12-04 19:30:01 +000099
100The result should be 6 separate files, each with part of the log history for the
101application::
102
103 /tmp/logging_rotatingfile_example.out
104 /tmp/logging_rotatingfile_example.out.1
105 /tmp/logging_rotatingfile_example.out.2
106 /tmp/logging_rotatingfile_example.out.3
107 /tmp/logging_rotatingfile_example.out.4
108 /tmp/logging_rotatingfile_example.out.5
109
110The most current file is always :file:`/tmp/logging_rotatingfile_example.out`,
111and each time it reaches the size limit it is renamed with the suffix
112``.1``. Each of the existing backup files is renamed to increment the suffix
113(``.1`` becomes ``.2``, etc.) and the ``.5`` file is erased.
114
115Obviously this example sets the log length much much too small as an extreme
116example. You would want to set *maxBytes* to an appropriate value.
117
118Another useful feature of the logging API is the ability to produce different
119messages at different log levels. This allows you to instrument your code with
120debug messages, for example, but turning the log level down so that those debug
121messages are not written for your production system. The default levels are
122``CRITICAL``, ``ERROR``, ``WARNING``, ``INFO``, ``DEBUG`` and ``UNSET``.
123
124The logger, handler, and log message call each specify a level. The log message
125is only emitted if the handler and logger are configured to emit messages of
126that level or lower. For example, if a message is ``CRITICAL``, and the logger
127is set to ``ERROR``, the message is emitted. If a message is a ``WARNING``, and
128the logger is set to produce only ``ERROR``\s, the message is not emitted::
129
130 import logging
131 import sys
132
133 LEVELS = {'debug': logging.DEBUG,
134 'info': logging.INFO,
135 'warning': logging.WARNING,
136 'error': logging.ERROR,
137 'critical': logging.CRITICAL}
138
139 if len(sys.argv) > 1:
140 level_name = sys.argv[1]
141 level = LEVELS.get(level_name, logging.NOTSET)
142 logging.basicConfig(level=level)
143
144 logging.debug('This is a debug message')
145 logging.info('This is an info message')
146 logging.warning('This is a warning message')
147 logging.error('This is an error message')
148 logging.critical('This is a critical error message')
149
150Run the script with an argument like 'debug' or 'warning' to see which messages
151show up at different levels::
152
153 $ python logging_level_example.py debug
154 DEBUG:root:This is a debug message
155 INFO:root:This is an info message
156 WARNING:root:This is a warning message
157 ERROR:root:This is an error message
158 CRITICAL:root:This is a critical error message
159
160 $ python logging_level_example.py info
161 INFO:root:This is an info message
162 WARNING:root:This is a warning message
163 ERROR:root:This is an error message
164 CRITICAL:root:This is a critical error message
165
166You will notice that these log messages all have ``root`` embedded in them. The
167logging module supports a hierarchy of loggers with different names. An easy
168way to tell where a specific log message comes from is to use a separate logger
169object for each of your modules. Each new logger "inherits" the configuration
170of its parent, and log messages sent to a logger include the name of that
171logger. Optionally, each logger can be configured differently, so that messages
172from different modules are handled in different ways. Let's look at a simple
173example of how to log from different modules so it is easy to trace the source
174of the message::
175
176 import logging
177
178 logging.basicConfig(level=logging.WARNING)
179
180 logger1 = logging.getLogger('package1.module1')
181 logger2 = logging.getLogger('package2.module2')
182
183 logger1.warning('This message comes from one module')
184 logger2.warning('And this message comes from another module')
185
186And the output::
187
188 $ python logging_modules_example.py
189 WARNING:package1.module1:This message comes from one module
190 WARNING:package2.module2:And this message comes from another module
191
192There are many more options for configuring logging, including different log
193message formatting options, having messages delivered to multiple destinations,
194and changing the configuration of a long-running application on the fly using a
195socket interface. All of these options are covered in depth in the library
196module documentation.
197
198Loggers
199^^^^^^^
200
201The logging library takes a modular approach and offers the several categories
202of components: loggers, handlers, filters, and formatters. Loggers expose the
203interface that application code directly uses. Handlers send the log records to
204the appropriate destination. Filters provide a finer grained facility for
205determining which log records to send on to a handler. Formatters specify the
206layout of the resultant log record.
207
208:class:`Logger` objects have a threefold job. First, they expose several
209methods to application code so that applications can log messages at runtime.
210Second, logger objects determine which log messages to act upon based upon
211severity (the default filtering facility) or filter objects. Third, logger
212objects pass along relevant log messages to all interested log handlers.
213
214The most widely used methods on logger objects fall into two categories:
215configuration and message sending.
216
217* :meth:`Logger.setLevel` specifies the lowest-severity log message a logger
218 will handle, where debug is the lowest built-in severity level and critical is
219 the highest built-in severity. For example, if the severity level is info,
220 the logger will handle only info, warning, error, and critical messages and
221 will ignore debug messages.
222
223* :meth:`Logger.addFilter` and :meth:`Logger.removeFilter` add and remove filter
224 objects from the logger object. This tutorial does not address filters.
225
226With the logger object configured, the following methods create log messages:
227
228* :meth:`Logger.debug`, :meth:`Logger.info`, :meth:`Logger.warning`,
229 :meth:`Logger.error`, and :meth:`Logger.critical` all create log records with
230 a message and a level that corresponds to their respective method names. The
231 message is actually a format string, which may contain the standard string
232 substitution syntax of :const:`%s`, :const:`%d`, :const:`%f`, and so on. The
233 rest of their arguments is a list of objects that correspond with the
234 substitution fields in the message. With regard to :const:`**kwargs`, the
235 logging methods care only about a keyword of :const:`exc_info` and use it to
236 determine whether to log exception information.
237
238* :meth:`Logger.exception` creates a log message similar to
239 :meth:`Logger.error`. The difference is that :meth:`Logger.exception` dumps a
240 stack trace along with it. Call this method only from an exception handler.
241
242* :meth:`Logger.log` takes a log level as an explicit argument. This is a
243 little more verbose for logging messages than using the log level convenience
244 methods listed above, but this is how to log at custom log levels.
245
Christian Heimesdcca98d2008-02-25 13:19:43 +0000246:func:`getLogger` returns a reference to a logger instance with the specified
247if it it is provided, or ``root`` if not. The names are period-separated
Christian Heimes8b0facf2007-12-04 19:30:01 +0000248hierarchical structures. Multiple calls to :func:`getLogger` with the same name
249will return a reference to the same logger object. Loggers that are further
250down in the hierarchical list are children of loggers higher up in the list.
251For example, given a logger with a name of ``foo``, loggers with names of
252``foo.bar``, ``foo.bar.baz``, and ``foo.bam`` are all children of ``foo``.
253Child loggers propagate messages up to their parent loggers. Because of this,
254it is unnecessary to define and configure all the loggers an application uses.
255It is sufficient to configure a top-level logger and create child loggers as
256needed.
257
258
259Handlers
260^^^^^^^^
261
262:class:`Handler` objects are responsible for dispatching the appropriate log
263messages (based on the log messages' severity) to the handler's specified
264destination. Logger objects can add zero or more handler objects to themselves
265with an :func:`addHandler` method. As an example scenario, an application may
266want to send all log messages to a log file, all log messages of error or higher
267to stdout, and all messages of critical to an email address. This scenario
Christian Heimesc3f30c42008-02-22 16:37:40 +0000268requires three individual handlers where each handler is responsible for sending
Christian Heimes8b0facf2007-12-04 19:30:01 +0000269messages of a specific severity to a specific location.
270
271The standard library includes quite a few handler types; this tutorial uses only
272:class:`StreamHandler` and :class:`FileHandler` in its examples.
273
274There are very few methods in a handler for application developers to concern
275themselves with. The only handler methods that seem relevant for application
276developers who are using the built-in handler objects (that is, not creating
277custom handlers) are the following configuration methods:
278
279* The :meth:`Handler.setLevel` method, just as in logger objects, specifies the
280 lowest severity that will be dispatched to the appropriate destination. Why
281 are there two :func:`setLevel` methods? The level set in the logger
282 determines which severity of messages it will pass to its handlers. The level
283 set in each handler determines which messages that handler will send on.
284 :func:`setFormatter` selects a Formatter object for this handler to use.
285
286* :func:`addFilter` and :func:`removeFilter` respectively configure and
287 deconfigure filter objects on handlers.
288
289Application code should not directly instantiate and use handlers. Instead, the
290:class:`Handler` class is a base class that defines the interface that all
291Handlers should have and establishes some default behavior that child classes
292can use (or override).
293
294
295Formatters
296^^^^^^^^^^
297
298Formatter objects configure the final order, structure, and contents of the log
Christian Heimesdcca98d2008-02-25 13:19:43 +0000299message. Unlike the base :class:`logging.Handler` class, application code may
Christian Heimes8b0facf2007-12-04 19:30:01 +0000300instantiate formatter classes, although you could likely subclass the formatter
301if your application needs special behavior. The constructor takes two optional
302arguments: a message format string and a date format string. If there is no
303message format string, the default is to use the raw message. If there is no
304date format string, the default date format is::
305
306 %Y-%m-%d %H:%M:%S
307
308with the milliseconds tacked on at the end.
309
310The message format string uses ``%(<dictionary key>)s`` styled string
311substitution; the possible keys are documented in :ref:`formatter-objects`.
312
313The following message format string will log the time in a human-readable
314format, the severity of the message, and the contents of the message, in that
315order::
316
317 "%(asctime)s - %(levelname)s - %(message)s"
318
319
320Configuring Logging
321^^^^^^^^^^^^^^^^^^^
322
323Programmers can configure logging either by creating loggers, handlers, and
324formatters explicitly in a main module with the configuration methods listed
325above (using Python code), or by creating a logging config file. The following
326code is an example of configuring a very simple logger, a console handler, and a
327simple formatter in a Python module::
328
329 import logging
330
331 # create logger
332 logger = logging.getLogger("simple_example")
333 logger.setLevel(logging.DEBUG)
334 # create console handler and set level to debug
335 ch = logging.StreamHandler()
336 ch.setLevel(logging.DEBUG)
337 # create formatter
338 formatter = logging.Formatter("%(asctime)s - %(name)s - %(levelname)s - %(message)s")
339 # add formatter to ch
340 ch.setFormatter(formatter)
341 # add ch to logger
342 logger.addHandler(ch)
343
344 # "application" code
345 logger.debug("debug message")
346 logger.info("info message")
347 logger.warn("warn message")
348 logger.error("error message")
349 logger.critical("critical message")
350
351Running this module from the command line produces the following output::
352
353 $ python simple_logging_module.py
354 2005-03-19 15:10:26,618 - simple_example - DEBUG - debug message
355 2005-03-19 15:10:26,620 - simple_example - INFO - info message
356 2005-03-19 15:10:26,695 - simple_example - WARNING - warn message
357 2005-03-19 15:10:26,697 - simple_example - ERROR - error message
358 2005-03-19 15:10:26,773 - simple_example - CRITICAL - critical message
359
360The following Python module creates a logger, handler, and formatter nearly
361identical to those in the example listed above, with the only difference being
362the names of the objects::
363
364 import logging
365 import logging.config
366
367 logging.config.fileConfig("logging.conf")
368
369 # create logger
370 logger = logging.getLogger("simpleExample")
371
372 # "application" code
373 logger.debug("debug message")
374 logger.info("info message")
375 logger.warn("warn message")
376 logger.error("error message")
377 logger.critical("critical message")
378
379Here is the logging.conf file::
380
381 [loggers]
382 keys=root,simpleExample
383
384 [handlers]
385 keys=consoleHandler
386
387 [formatters]
388 keys=simpleFormatter
389
390 [logger_root]
391 level=DEBUG
392 handlers=consoleHandler
393
394 [logger_simpleExample]
395 level=DEBUG
396 handlers=consoleHandler
397 qualname=simpleExample
398 propagate=0
399
400 [handler_consoleHandler]
401 class=StreamHandler
402 level=DEBUG
403 formatter=simpleFormatter
404 args=(sys.stdout,)
405
406 [formatter_simpleFormatter]
407 format=%(asctime)s - %(name)s - %(levelname)s - %(message)s
408 datefmt=
409
410The output is nearly identical to that of the non-config-file-based example::
411
412 $ python simple_logging_config.py
413 2005-03-19 15:38:55,977 - simpleExample - DEBUG - debug message
414 2005-03-19 15:38:55,979 - simpleExample - INFO - info message
415 2005-03-19 15:38:56,054 - simpleExample - WARNING - warn message
416 2005-03-19 15:38:56,055 - simpleExample - ERROR - error message
417 2005-03-19 15:38:56,130 - simpleExample - CRITICAL - critical message
418
419You can see that the config file approach has a few advantages over the Python
420code approach, mainly separation of configuration and code and the ability of
421noncoders to easily modify the logging properties.
422
423
424Logging Levels
425--------------
426
Georg Brandl116aa622007-08-15 14:28:22 +0000427The numeric values of logging levels are given in the following table. These are
428primarily of interest if you want to define your own levels, and need them to
429have specific values relative to the predefined levels. If you define a level
430with the same numeric value, it overwrites the predefined value; the predefined
431name is lost.
432
433+--------------+---------------+
434| Level | Numeric value |
435+==============+===============+
436| ``CRITICAL`` | 50 |
437+--------------+---------------+
438| ``ERROR`` | 40 |
439+--------------+---------------+
440| ``WARNING`` | 30 |
441+--------------+---------------+
442| ``INFO`` | 20 |
443+--------------+---------------+
444| ``DEBUG`` | 10 |
445+--------------+---------------+
446| ``NOTSET`` | 0 |
447+--------------+---------------+
448
449Levels can also be associated with loggers, being set either by the developer or
450through loading a saved logging configuration. When a logging method is called
451on a logger, the logger compares its own level with the level associated with
452the method call. If the logger's level is higher than the method call's, no
453logging message is actually generated. This is the basic mechanism controlling
454the verbosity of logging output.
455
456Logging messages are encoded as instances of the :class:`LogRecord` class. When
457a logger decides to actually log an event, a :class:`LogRecord` instance is
458created from the logging message.
459
460Logging messages are subjected to a dispatch mechanism through the use of
461:dfn:`handlers`, which are instances of subclasses of the :class:`Handler`
462class. Handlers are responsible for ensuring that a logged message (in the form
463of a :class:`LogRecord`) ends up in a particular location (or set of locations)
464which is useful for the target audience for that message (such as end users,
465support desk staff, system administrators, developers). Handlers are passed
466:class:`LogRecord` instances intended for particular destinations. Each logger
467can have zero, one or more handlers associated with it (via the
468:meth:`addHandler` method of :class:`Logger`). In addition to any handlers
469directly associated with a logger, *all handlers associated with all ancestors
470of the logger* are called to dispatch the message.
471
472Just as for loggers, handlers can have levels associated with them. A handler's
473level acts as a filter in the same way as a logger's level does. If a handler
474decides to actually dispatch an event, the :meth:`emit` method is used to send
475the message to its destination. Most user-defined subclasses of :class:`Handler`
476will need to override this :meth:`emit`.
477
478In addition to the base :class:`Handler` class, many useful subclasses are
479provided:
480
481#. :class:`StreamHandler` instances send error messages to streams (file-like
482 objects).
483
484#. :class:`FileHandler` instances send error messages to disk files.
485
486#. :class:`BaseRotatingHandler` is the base class for handlers that rotate log
487 files at a certain point. It is not meant to be instantiated directly. Instead,
488 use :class:`RotatingFileHandler` or :class:`TimedRotatingFileHandler`.
489
490#. :class:`RotatingFileHandler` instances send error messages to disk files,
491 with support for maximum log file sizes and log file rotation.
492
493#. :class:`TimedRotatingFileHandler` instances send error messages to disk files
494 rotating the log file at certain timed intervals.
495
496#. :class:`SocketHandler` instances send error messages to TCP/IP sockets.
497
498#. :class:`DatagramHandler` instances send error messages to UDP sockets.
499
500#. :class:`SMTPHandler` instances send error messages to a designated email
501 address.
502
503#. :class:`SysLogHandler` instances send error messages to a Unix syslog daemon,
504 possibly on a remote machine.
505
506#. :class:`NTEventLogHandler` instances send error messages to a Windows
507 NT/2000/XP event log.
508
509#. :class:`MemoryHandler` instances send error messages to a buffer in memory,
510 which is flushed whenever specific criteria are met.
511
512#. :class:`HTTPHandler` instances send error messages to an HTTP server using
513 either ``GET`` or ``POST`` semantics.
514
515The :class:`StreamHandler` and :class:`FileHandler` classes are defined in the
516core logging package. The other handlers are defined in a sub- module,
517:mod:`logging.handlers`. (There is also another sub-module,
518:mod:`logging.config`, for configuration functionality.)
519
520Logged messages are formatted for presentation through instances of the
521:class:`Formatter` class. They are initialized with a format string suitable for
522use with the % operator and a dictionary.
523
524For formatting multiple messages in a batch, instances of
525:class:`BufferingFormatter` can be used. In addition to the format string (which
526is applied to each message in the batch), there is provision for header and
527trailer format strings.
528
529When filtering based on logger level and/or handler level is not enough,
530instances of :class:`Filter` can be added to both :class:`Logger` and
531:class:`Handler` instances (through their :meth:`addFilter` method). Before
532deciding to process a message further, both loggers and handlers consult all
533their filters for permission. If any filter returns a false value, the message
534is not processed further.
535
536The basic :class:`Filter` functionality allows filtering by specific logger
537name. If this feature is used, messages sent to the named logger and its
538children are allowed through the filter, and all others dropped.
539
540In addition to the classes described above, there are a number of module- level
541functions.
542
543
544.. function:: getLogger([name])
545
546 Return a logger with the specified name or, if no name is specified, return a
547 logger which is the root logger of the hierarchy. If specified, the name is
548 typically a dot-separated hierarchical name like *"a"*, *"a.b"* or *"a.b.c.d"*.
549 Choice of these names is entirely up to the developer who is using logging.
550
551 All calls to this function with a given name return the same logger instance.
552 This means that logger instances never need to be passed between different parts
553 of an application.
554
555
556.. function:: getLoggerClass()
557
558 Return either the standard :class:`Logger` class, or the last class passed to
559 :func:`setLoggerClass`. This function may be called from within a new class
560 definition, to ensure that installing a customised :class:`Logger` class will
561 not undo customisations already applied by other code. For example::
562
563 class MyLogger(logging.getLoggerClass()):
564 # ... override behaviour here
565
566
567.. function:: debug(msg[, *args[, **kwargs]])
568
569 Logs a message with level :const:`DEBUG` on the root logger. The *msg* is the
570 message format string, and the *args* are the arguments which are merged into
571 *msg* using the string formatting operator. (Note that this means that you can
572 use keywords in the format string, together with a single dictionary argument.)
573
574 There are two keyword arguments in *kwargs* which are inspected: *exc_info*
575 which, if it does not evaluate as false, causes exception information to be
576 added to the logging message. If an exception tuple (in the format returned by
577 :func:`sys.exc_info`) is provided, it is used; otherwise, :func:`sys.exc_info`
578 is called to get the exception information.
579
580 The other optional keyword argument is *extra* which can be used to pass a
581 dictionary which is used to populate the __dict__ of the LogRecord created for
582 the logging event with user-defined attributes. These custom attributes can then
583 be used as you like. For example, they could be incorporated into logged
584 messages. For example::
585
586 FORMAT = "%(asctime)-15s %(clientip)s %(user)-8s %(message)s"
587 logging.basicConfig(format=FORMAT)
588 d = {'clientip': '192.168.0.1', 'user': 'fbloggs'}
589 logging.warning("Protocol problem: %s", "connection reset", extra=d)
590
591 would print something like ::
592
593 2006-02-08 22:20:02,165 192.168.0.1 fbloggs Protocol problem: connection reset
594
595 The keys in the dictionary passed in *extra* should not clash with the keys used
596 by the logging system. (See the :class:`Formatter` documentation for more
597 information on which keys are used by the logging system.)
598
599 If you choose to use these attributes in logged messages, you need to exercise
600 some care. In the above example, for instance, the :class:`Formatter` has been
601 set up with a format string which expects 'clientip' and 'user' in the attribute
602 dictionary of the LogRecord. If these are missing, the message will not be
603 logged because a string formatting exception will occur. So in this case, you
604 always need to pass the *extra* dictionary with these keys.
605
606 While this might be annoying, this feature is intended for use in specialized
607 circumstances, such as multi-threaded servers where the same code executes in
608 many contexts, and interesting conditions which arise are dependent on this
609 context (such as remote client IP address and authenticated user name, in the
610 above example). In such circumstances, it is likely that specialized
611 :class:`Formatter`\ s would be used with particular :class:`Handler`\ s.
612
Georg Brandl116aa622007-08-15 14:28:22 +0000613
614.. function:: info(msg[, *args[, **kwargs]])
615
616 Logs a message with level :const:`INFO` on the root logger. The arguments are
617 interpreted as for :func:`debug`.
618
619
620.. function:: warning(msg[, *args[, **kwargs]])
621
622 Logs a message with level :const:`WARNING` on the root logger. The arguments are
623 interpreted as for :func:`debug`.
624
625
626.. function:: error(msg[, *args[, **kwargs]])
627
628 Logs a message with level :const:`ERROR` on the root logger. The arguments are
629 interpreted as for :func:`debug`.
630
631
632.. function:: critical(msg[, *args[, **kwargs]])
633
634 Logs a message with level :const:`CRITICAL` on the root logger. The arguments
635 are interpreted as for :func:`debug`.
636
637
638.. function:: exception(msg[, *args])
639
640 Logs a message with level :const:`ERROR` on the root logger. The arguments are
641 interpreted as for :func:`debug`. Exception info is added to the logging
642 message. This function should only be called from an exception handler.
643
644
645.. function:: log(level, msg[, *args[, **kwargs]])
646
647 Logs a message with level *level* on the root logger. The other arguments are
648 interpreted as for :func:`debug`.
649
650
651.. function:: disable(lvl)
652
653 Provides an overriding level *lvl* for all loggers which takes precedence over
654 the logger's own level. When the need arises to temporarily throttle logging
655 output down across the whole application, this function can be useful.
656
657
658.. function:: addLevelName(lvl, levelName)
659
660 Associates level *lvl* with text *levelName* in an internal dictionary, which is
661 used to map numeric levels to a textual representation, for example when a
662 :class:`Formatter` formats a message. This function can also be used to define
663 your own levels. The only constraints are that all levels used must be
664 registered using this function, levels should be positive integers and they
665 should increase in increasing order of severity.
666
667
668.. function:: getLevelName(lvl)
669
670 Returns the textual representation of logging level *lvl*. If the level is one
671 of the predefined levels :const:`CRITICAL`, :const:`ERROR`, :const:`WARNING`,
672 :const:`INFO` or :const:`DEBUG` then you get the corresponding string. If you
673 have associated levels with names using :func:`addLevelName` then the name you
674 have associated with *lvl* is returned. If a numeric value corresponding to one
675 of the defined levels is passed in, the corresponding string representation is
676 returned. Otherwise, the string "Level %s" % lvl is returned.
677
678
679.. function:: makeLogRecord(attrdict)
680
681 Creates and returns a new :class:`LogRecord` instance whose attributes are
682 defined by *attrdict*. This function is useful for taking a pickled
683 :class:`LogRecord` attribute dictionary, sent over a socket, and reconstituting
684 it as a :class:`LogRecord` instance at the receiving end.
685
686
687.. function:: basicConfig([**kwargs])
688
689 Does basic configuration for the logging system by creating a
690 :class:`StreamHandler` with a default :class:`Formatter` and adding it to the
Christian Heimes043d6f62008-01-07 17:19:16 +0000691 root logger. The function does nothing if any handlers have been defined for
692 the root logger. The functions :func:`debug`, :func:`info`, :func:`warning`,
Georg Brandl116aa622007-08-15 14:28:22 +0000693 :func:`error` and :func:`critical` will call :func:`basicConfig` automatically
694 if no handlers are defined for the root logger.
695
Georg Brandl116aa622007-08-15 14:28:22 +0000696 The following keyword arguments are supported.
697
698 +--------------+---------------------------------------------+
699 | Format | Description |
700 +==============+=============================================+
701 | ``filename`` | Specifies that a FileHandler be created, |
702 | | using the specified filename, rather than a |
703 | | StreamHandler. |
704 +--------------+---------------------------------------------+
705 | ``filemode`` | Specifies the mode to open the file, if |
706 | | filename is specified (if filemode is |
707 | | unspecified, it defaults to 'a'). |
708 +--------------+---------------------------------------------+
709 | ``format`` | Use the specified format string for the |
710 | | handler. |
711 +--------------+---------------------------------------------+
712 | ``datefmt`` | Use the specified date/time format. |
713 +--------------+---------------------------------------------+
714 | ``level`` | Set the root logger level to the specified |
715 | | level. |
716 +--------------+---------------------------------------------+
717 | ``stream`` | Use the specified stream to initialize the |
718 | | StreamHandler. Note that this argument is |
719 | | incompatible with 'filename' - if both are |
720 | | present, 'stream' is ignored. |
721 +--------------+---------------------------------------------+
722
723
724.. function:: shutdown()
725
726 Informs the logging system to perform an orderly shutdown by flushing and
Christian Heimesb186d002008-03-18 15:15:01 +0000727 closing all handlers. This should be called at application exit and no
728 further use of the logging system should be made after this call.
Georg Brandl116aa622007-08-15 14:28:22 +0000729
730
731.. function:: setLoggerClass(klass)
732
733 Tells the logging system to use the class *klass* when instantiating a logger.
734 The class should define :meth:`__init__` such that only a name argument is
735 required, and the :meth:`__init__` should call :meth:`Logger.__init__`. This
736 function is typically called before any loggers are instantiated by applications
737 which need to use custom logger behavior.
738
739
740.. seealso::
741
742 :pep:`282` - A Logging System
743 The proposal which described this feature for inclusion in the Python standard
744 library.
745
Christian Heimes255f53b2007-12-08 15:33:56 +0000746 `Original Python logging package <http://www.red-dove.com/python_logging.html>`_
Georg Brandl116aa622007-08-15 14:28:22 +0000747 This is the original source for the :mod:`logging` package. The version of the
748 package available from this site is suitable for use with Python 1.5.2, 2.1.x
749 and 2.2.x, which do not include the :mod:`logging` package in the standard
750 library.
751
752
753Logger Objects
754--------------
755
756Loggers have the following attributes and methods. Note that Loggers are never
757instantiated directly, but always through the module-level function
758``logging.getLogger(name)``.
759
760
761.. attribute:: Logger.propagate
762
763 If this evaluates to false, logging messages are not passed by this logger or by
764 child loggers to higher level (ancestor) loggers. The constructor sets this
765 attribute to 1.
766
767
768.. method:: Logger.setLevel(lvl)
769
770 Sets the threshold for this logger to *lvl*. Logging messages which are less
771 severe than *lvl* will be ignored. When a logger is created, the level is set to
772 :const:`NOTSET` (which causes all messages to be processed when the logger is
773 the root logger, or delegation to the parent when the logger is a non-root
774 logger). Note that the root logger is created with level :const:`WARNING`.
775
776 The term "delegation to the parent" means that if a logger has a level of
777 NOTSET, its chain of ancestor loggers is traversed until either an ancestor with
778 a level other than NOTSET is found, or the root is reached.
779
780 If an ancestor is found with a level other than NOTSET, then that ancestor's
781 level is treated as the effective level of the logger where the ancestor search
782 began, and is used to determine how a logging event is handled.
783
784 If the root is reached, and it has a level of NOTSET, then all messages will be
785 processed. Otherwise, the root's level will be used as the effective level.
786
787
788.. method:: Logger.isEnabledFor(lvl)
789
790 Indicates if a message of severity *lvl* would be processed by this logger.
791 This method checks first the module-level level set by
792 ``logging.disable(lvl)`` and then the logger's effective level as determined
793 by :meth:`getEffectiveLevel`.
794
795
796.. method:: Logger.getEffectiveLevel()
797
798 Indicates the effective level for this logger. If a value other than
799 :const:`NOTSET` has been set using :meth:`setLevel`, it is returned. Otherwise,
800 the hierarchy is traversed towards the root until a value other than
801 :const:`NOTSET` is found, and that value is returned.
802
803
804.. method:: Logger.debug(msg[, *args[, **kwargs]])
805
806 Logs a message with level :const:`DEBUG` on this logger. The *msg* is the
807 message format string, and the *args* are the arguments which are merged into
808 *msg* using the string formatting operator. (Note that this means that you can
809 use keywords in the format string, together with a single dictionary argument.)
810
811 There are two keyword arguments in *kwargs* which are inspected: *exc_info*
812 which, if it does not evaluate as false, causes exception information to be
813 added to the logging message. If an exception tuple (in the format returned by
814 :func:`sys.exc_info`) is provided, it is used; otherwise, :func:`sys.exc_info`
815 is called to get the exception information.
816
817 The other optional keyword argument is *extra* which can be used to pass a
818 dictionary which is used to populate the __dict__ of the LogRecord created for
819 the logging event with user-defined attributes. These custom attributes can then
820 be used as you like. For example, they could be incorporated into logged
821 messages. For example::
822
823 FORMAT = "%(asctime)-15s %(clientip)s %(user)-8s %(message)s"
824 logging.basicConfig(format=FORMAT)
Georg Brandl9afde1c2007-11-01 20:32:30 +0000825 d = { 'clientip' : '192.168.0.1', 'user' : 'fbloggs' }
Georg Brandl116aa622007-08-15 14:28:22 +0000826 logger = logging.getLogger("tcpserver")
827 logger.warning("Protocol problem: %s", "connection reset", extra=d)
828
829 would print something like ::
830
831 2006-02-08 22:20:02,165 192.168.0.1 fbloggs Protocol problem: connection reset
832
833 The keys in the dictionary passed in *extra* should not clash with the keys used
834 by the logging system. (See the :class:`Formatter` documentation for more
835 information on which keys are used by the logging system.)
836
837 If you choose to use these attributes in logged messages, you need to exercise
838 some care. In the above example, for instance, the :class:`Formatter` has been
839 set up with a format string which expects 'clientip' and 'user' in the attribute
840 dictionary of the LogRecord. If these are missing, the message will not be
841 logged because a string formatting exception will occur. So in this case, you
842 always need to pass the *extra* dictionary with these keys.
843
844 While this might be annoying, this feature is intended for use in specialized
845 circumstances, such as multi-threaded servers where the same code executes in
846 many contexts, and interesting conditions which arise are dependent on this
847 context (such as remote client IP address and authenticated user name, in the
848 above example). In such circumstances, it is likely that specialized
849 :class:`Formatter`\ s would be used with particular :class:`Handler`\ s.
850
Georg Brandl116aa622007-08-15 14:28:22 +0000851
852.. method:: Logger.info(msg[, *args[, **kwargs]])
853
854 Logs a message with level :const:`INFO` on this logger. The arguments are
855 interpreted as for :meth:`debug`.
856
857
858.. method:: Logger.warning(msg[, *args[, **kwargs]])
859
860 Logs a message with level :const:`WARNING` on this logger. The arguments are
861 interpreted as for :meth:`debug`.
862
863
864.. method:: Logger.error(msg[, *args[, **kwargs]])
865
866 Logs a message with level :const:`ERROR` on this logger. The arguments are
867 interpreted as for :meth:`debug`.
868
869
870.. method:: Logger.critical(msg[, *args[, **kwargs]])
871
872 Logs a message with level :const:`CRITICAL` on this logger. The arguments are
873 interpreted as for :meth:`debug`.
874
875
876.. method:: Logger.log(lvl, msg[, *args[, **kwargs]])
877
878 Logs a message with integer level *lvl* on this logger. The other arguments are
879 interpreted as for :meth:`debug`.
880
881
882.. method:: Logger.exception(msg[, *args])
883
884 Logs a message with level :const:`ERROR` on this logger. The arguments are
885 interpreted as for :meth:`debug`. Exception info is added to the logging
886 message. This method should only be called from an exception handler.
887
888
889.. method:: Logger.addFilter(filt)
890
891 Adds the specified filter *filt* to this logger.
892
893
894.. method:: Logger.removeFilter(filt)
895
896 Removes the specified filter *filt* from this logger.
897
898
899.. method:: Logger.filter(record)
900
901 Applies this logger's filters to the record and returns a true value if the
902 record is to be processed.
903
904
905.. method:: Logger.addHandler(hdlr)
906
907 Adds the specified handler *hdlr* to this logger.
908
909
910.. method:: Logger.removeHandler(hdlr)
911
912 Removes the specified handler *hdlr* from this logger.
913
914
915.. method:: Logger.findCaller()
916
917 Finds the caller's source filename and line number. Returns the filename, line
918 number and function name as a 3-element tuple.
919
Georg Brandl116aa622007-08-15 14:28:22 +0000920
921.. method:: Logger.handle(record)
922
923 Handles a record by passing it to all handlers associated with this logger and
924 its ancestors (until a false value of *propagate* is found). This method is used
925 for unpickled records received from a socket, as well as those created locally.
926 Logger-level filtering is applied using :meth:`filter`.
927
928
929.. method:: Logger.makeRecord(name, lvl, fn, lno, msg, args, exc_info [, func, extra])
930
931 This is a factory method which can be overridden in subclasses to create
932 specialized :class:`LogRecord` instances.
933
Georg Brandl116aa622007-08-15 14:28:22 +0000934
935.. _minimal-example:
936
937Basic example
938-------------
939
Georg Brandl116aa622007-08-15 14:28:22 +0000940The :mod:`logging` package provides a lot of flexibility, and its configuration
941can appear daunting. This section demonstrates that simple use of the logging
942package is possible.
943
944The simplest example shows logging to the console::
945
946 import logging
947
948 logging.debug('A debug message')
949 logging.info('Some information')
950 logging.warning('A shot across the bows')
951
952If you run the above script, you'll see this::
953
954 WARNING:root:A shot across the bows
955
956Because no particular logger was specified, the system used the root logger. The
957debug and info messages didn't appear because by default, the root logger is
958configured to only handle messages with a severity of WARNING or above. The
959message format is also a configuration default, as is the output destination of
960the messages - ``sys.stderr``. The severity level, the message format and
961destination can be easily changed, as shown in the example below::
962
963 import logging
964
965 logging.basicConfig(level=logging.DEBUG,
966 format='%(asctime)s %(levelname)s %(message)s',
967 filename='/tmp/myapp.log',
968 filemode='w')
969 logging.debug('A debug message')
970 logging.info('Some information')
971 logging.warning('A shot across the bows')
972
973The :meth:`basicConfig` method is used to change the configuration defaults,
974which results in output (written to ``/tmp/myapp.log``) which should look
975something like the following::
976
977 2004-07-02 13:00:08,743 DEBUG A debug message
978 2004-07-02 13:00:08,743 INFO Some information
979 2004-07-02 13:00:08,743 WARNING A shot across the bows
980
981This time, all messages with a severity of DEBUG or above were handled, and the
982format of the messages was also changed, and output went to the specified file
983rather than the console.
984
Georg Brandl81ac1ce2007-08-31 17:17:17 +0000985.. XXX logging should probably be updated for new string formatting!
Georg Brandl4b491312007-08-31 09:22:56 +0000986
987Formatting uses the old Python string formatting - see section
988:ref:`old-string-formatting`. The format string takes the following common
Georg Brandl116aa622007-08-15 14:28:22 +0000989specifiers. For a complete list of specifiers, consult the :class:`Formatter`
990documentation.
991
992+-------------------+-----------------------------------------------+
993| Format | Description |
994+===================+===============================================+
995| ``%(name)s`` | Name of the logger (logging channel). |
996+-------------------+-----------------------------------------------+
997| ``%(levelname)s`` | Text logging level for the message |
998| | (``'DEBUG'``, ``'INFO'``, ``'WARNING'``, |
999| | ``'ERROR'``, ``'CRITICAL'``). |
1000+-------------------+-----------------------------------------------+
1001| ``%(asctime)s`` | Human-readable time when the |
1002| | :class:`LogRecord` was created. By default |
1003| | this is of the form "2003-07-08 16:49:45,896" |
1004| | (the numbers after the comma are millisecond |
1005| | portion of the time). |
1006+-------------------+-----------------------------------------------+
1007| ``%(message)s`` | The logged message. |
1008+-------------------+-----------------------------------------------+
1009
1010To change the date/time format, you can pass an additional keyword parameter,
1011*datefmt*, as in the following::
1012
1013 import logging
1014
1015 logging.basicConfig(level=logging.DEBUG,
1016 format='%(asctime)s %(levelname)-8s %(message)s',
1017 datefmt='%a, %d %b %Y %H:%M:%S',
1018 filename='/temp/myapp.log',
1019 filemode='w')
1020 logging.debug('A debug message')
1021 logging.info('Some information')
1022 logging.warning('A shot across the bows')
1023
1024which would result in output like ::
1025
1026 Fri, 02 Jul 2004 13:06:18 DEBUG A debug message
1027 Fri, 02 Jul 2004 13:06:18 INFO Some information
1028 Fri, 02 Jul 2004 13:06:18 WARNING A shot across the bows
1029
1030The date format string follows the requirements of :func:`strftime` - see the
1031documentation for the :mod:`time` module.
1032
1033If, instead of sending logging output to the console or a file, you'd rather use
1034a file-like object which you have created separately, you can pass it to
1035:func:`basicConfig` using the *stream* keyword argument. Note that if both
1036*stream* and *filename* keyword arguments are passed, the *stream* argument is
1037ignored.
1038
1039Of course, you can put variable information in your output. To do this, simply
1040have the message be a format string and pass in additional arguments containing
1041the variable information, as in the following example::
1042
1043 import logging
1044
1045 logging.basicConfig(level=logging.DEBUG,
1046 format='%(asctime)s %(levelname)-8s %(message)s',
1047 datefmt='%a, %d %b %Y %H:%M:%S',
1048 filename='/temp/myapp.log',
1049 filemode='w')
1050 logging.error('Pack my box with %d dozen %s', 5, 'liquor jugs')
1051
1052which would result in ::
1053
1054 Wed, 21 Jul 2004 15:35:16 ERROR Pack my box with 5 dozen liquor jugs
1055
1056
1057.. _multiple-destinations:
1058
1059Logging to multiple destinations
1060--------------------------------
1061
1062Let's say you want to log to console and file with different message formats and
1063in differing circumstances. Say you want to log messages with levels of DEBUG
1064and higher to file, and those messages at level INFO and higher to the console.
1065Let's also assume that the file should contain timestamps, but the console
1066messages should not. Here's how you can achieve this::
1067
1068 import logging
1069
1070 # set up logging to file - see previous section for more details
1071 logging.basicConfig(level=logging.DEBUG,
1072 format='%(asctime)s %(name)-12s %(levelname)-8s %(message)s',
1073 datefmt='%m-%d %H:%M',
1074 filename='/temp/myapp.log',
1075 filemode='w')
1076 # define a Handler which writes INFO messages or higher to the sys.stderr
1077 console = logging.StreamHandler()
1078 console.setLevel(logging.INFO)
1079 # set a format which is simpler for console use
1080 formatter = logging.Formatter('%(name)-12s: %(levelname)-8s %(message)s')
1081 # tell the handler to use this format
1082 console.setFormatter(formatter)
1083 # add the handler to the root logger
1084 logging.getLogger('').addHandler(console)
1085
1086 # Now, we can log to the root logger, or any other logger. First the root...
1087 logging.info('Jackdaws love my big sphinx of quartz.')
1088
1089 # Now, define a couple of other loggers which might represent areas in your
1090 # application:
1091
1092 logger1 = logging.getLogger('myapp.area1')
1093 logger2 = logging.getLogger('myapp.area2')
1094
1095 logger1.debug('Quick zephyrs blow, vexing daft Jim.')
1096 logger1.info('How quickly daft jumping zebras vex.')
1097 logger2.warning('Jail zesty vixen who grabbed pay from quack.')
1098 logger2.error('The five boxing wizards jump quickly.')
1099
1100When you run this, on the console you will see ::
1101
1102 root : INFO Jackdaws love my big sphinx of quartz.
1103 myapp.area1 : INFO How quickly daft jumping zebras vex.
1104 myapp.area2 : WARNING Jail zesty vixen who grabbed pay from quack.
1105 myapp.area2 : ERROR The five boxing wizards jump quickly.
1106
1107and in the file you will see something like ::
1108
1109 10-22 22:19 root INFO Jackdaws love my big sphinx of quartz.
1110 10-22 22:19 myapp.area1 DEBUG Quick zephyrs blow, vexing daft Jim.
1111 10-22 22:19 myapp.area1 INFO How quickly daft jumping zebras vex.
1112 10-22 22:19 myapp.area2 WARNING Jail zesty vixen who grabbed pay from quack.
1113 10-22 22:19 myapp.area2 ERROR The five boxing wizards jump quickly.
1114
1115As you can see, the DEBUG message only shows up in the file. The other messages
1116are sent to both destinations.
1117
1118This example uses console and file handlers, but you can use any number and
1119combination of handlers you choose.
1120
1121
Christian Heimes790c8232008-01-07 21:14:23 +00001122.. _context-info:
1123
1124Adding contextual information to your logging output
1125----------------------------------------------------
1126
1127Sometimes you want logging output to contain contextual information in
1128addition to the parameters passed to the logging call. For example, in a
1129networked application, it may be desirable to log client-specific information
1130in the log (e.g. remote client's username, or IP address). Although you could
1131use the *extra* parameter to achieve this, it's not always convenient to pass
1132the information in this way. While it might be tempting to create
1133:class:`Logger` instances on a per-connection basis, this is not a good idea
1134because these instances are not garbage collected. While this is not a problem
1135in practice, when the number of :class:`Logger` instances is dependent on the
1136level of granularity you want to use in logging an application, it could
1137be hard to manage if the number of :class:`Logger` instances becomes
1138effectively unbounded.
1139
Christian Heimes04c420f2008-01-18 18:40:46 +00001140An easy way in which you can pass contextual information to be output along
1141with logging event information is to use the :class:`LoggerAdapter` class.
1142This class is designed to look like a :class:`Logger`, so that you can call
1143:meth:`debug`, :meth:`info`, :meth:`warning`, :meth:`error`,
1144:meth:`exception`, :meth:`critical` and :meth:`log`. These methods have the
1145same signatures as their counterparts in :class:`Logger`, so you can use the
1146two types of instances interchangeably.
Christian Heimes790c8232008-01-07 21:14:23 +00001147
Christian Heimes04c420f2008-01-18 18:40:46 +00001148When you create an instance of :class:`LoggerAdapter`, you pass it a
1149:class:`Logger` instance and a dict-like object which contains your contextual
1150information. When you call one of the logging methods on an instance of
1151:class:`LoggerAdapter`, it delegates the call to the underlying instance of
1152:class:`Logger` passed to its constructor, and arranges to pass the contextual
1153information in the delegated call. Here's a snippet from the code of
1154:class:`LoggerAdapter`::
Christian Heimes790c8232008-01-07 21:14:23 +00001155
Christian Heimes04c420f2008-01-18 18:40:46 +00001156 def debug(self, msg, *args, **kwargs):
1157 """
1158 Delegate a debug call to the underlying logger, after adding
1159 contextual information from this adapter instance.
1160 """
1161 msg, kwargs = self.process(msg, kwargs)
1162 self.logger.debug(msg, *args, **kwargs)
Christian Heimes790c8232008-01-07 21:14:23 +00001163
Christian Heimes04c420f2008-01-18 18:40:46 +00001164The :meth:`process` method of :class:`LoggerAdapter` is where the contextual
1165information is added to the logging output. It's passed the message and
1166keyword arguments of the logging call, and it passes back (potentially)
1167modified versions of these to use in the call to the underlying logger. The
1168default implementation of this method leaves the message alone, but inserts
1169an "extra" key in the keyword argument whose value is the dict-like object
1170passed to the constructor. Of course, if you had passed an "extra" keyword
1171argument in the call to the adapter, it will be silently overwritten.
Christian Heimes790c8232008-01-07 21:14:23 +00001172
Christian Heimes04c420f2008-01-18 18:40:46 +00001173The advantage of using "extra" is that the values in the dict-like object are
1174merged into the :class:`LogRecord` instance's __dict__, allowing you to use
1175customized strings with your :class:`Formatter` instances which know about
1176the keys of the dict-like object. If you need a different method, e.g. if you
1177want to prepend or append the contextual information to the message string,
1178you just need to subclass :class:`LoggerAdapter` and override :meth:`process`
1179to do what you need. Here's an example script which uses this class, which
1180also illustrates what dict-like behaviour is needed from an arbitrary
1181"dict-like" object for use in the constructor::
1182
Christian Heimes587c2bf2008-01-19 16:21:02 +00001183 import logging
Georg Brandl86def6c2008-01-21 20:36:10 +00001184
Christian Heimes587c2bf2008-01-19 16:21:02 +00001185 class ConnInfo:
1186 """
1187 An example class which shows how an arbitrary class can be used as
1188 the 'extra' context information repository passed to a LoggerAdapter.
1189 """
Georg Brandl86def6c2008-01-21 20:36:10 +00001190
Christian Heimes587c2bf2008-01-19 16:21:02 +00001191 def __getitem__(self, name):
1192 """
1193 To allow this instance to look like a dict.
1194 """
1195 from random import choice
1196 if name == "ip":
1197 result = choice(["127.0.0.1", "192.168.0.1"])
1198 elif name == "user":
1199 result = choice(["jim", "fred", "sheila"])
1200 else:
1201 result = self.__dict__.get(name, "?")
1202 return result
Georg Brandl86def6c2008-01-21 20:36:10 +00001203
Christian Heimes587c2bf2008-01-19 16:21:02 +00001204 def __iter__(self):
1205 """
1206 To allow iteration over keys, which will be merged into
1207 the LogRecord dict before formatting and output.
1208 """
1209 keys = ["ip", "user"]
1210 keys.extend(self.__dict__.keys())
1211 return keys.__iter__()
Georg Brandl86def6c2008-01-21 20:36:10 +00001212
Christian Heimes587c2bf2008-01-19 16:21:02 +00001213 if __name__ == "__main__":
1214 from random import choice
1215 levels = (logging.DEBUG, logging.INFO, logging.WARNING, logging.ERROR, logging.CRITICAL)
1216 a1 = logging.LoggerAdapter(logging.getLogger("a.b.c"),
1217 { "ip" : "123.231.231.123", "user" : "sheila" })
1218 logging.basicConfig(level=logging.DEBUG,
1219 format="%(asctime)-15s %(name)-5s %(levelname)-8s IP: %(ip)-15s User: %(user)-8s %(message)s")
1220 a1.debug("A debug message")
1221 a1.info("An info message with %s", "some parameters")
1222 a2 = logging.LoggerAdapter(logging.getLogger("d.e.f"), ConnInfo())
1223 for x in range(10):
1224 lvl = choice(levels)
1225 lvlname = logging.getLevelName(lvl)
1226 a2.log(lvl, "A message at %s level with %d %s", lvlname, 2, "parameters")
Christian Heimes04c420f2008-01-18 18:40:46 +00001227
1228When this script is run, the output should look something like this::
1229
Christian Heimes587c2bf2008-01-19 16:21:02 +00001230 2008-01-18 14:49:54,023 a.b.c DEBUG IP: 123.231.231.123 User: sheila A debug message
1231 2008-01-18 14:49:54,023 a.b.c INFO IP: 123.231.231.123 User: sheila An info message with some parameters
1232 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
1233 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
1234 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
1235 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
1236 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
1237 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
1238 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
1239 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
1240 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
1241 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 +00001242
1243.. versionadded:: 2.6
1244
1245The :class:`LoggerAdapter` class was not present in previous versions.
1246
Christian Heimes790c8232008-01-07 21:14:23 +00001247
Georg Brandl116aa622007-08-15 14:28:22 +00001248.. _network-logging:
1249
1250Sending and receiving logging events across a network
1251-----------------------------------------------------
1252
1253Let's say you want to send logging events across a network, and handle them at
1254the receiving end. A simple way of doing this is attaching a
1255:class:`SocketHandler` instance to the root logger at the sending end::
1256
1257 import logging, logging.handlers
1258
1259 rootLogger = logging.getLogger('')
1260 rootLogger.setLevel(logging.DEBUG)
1261 socketHandler = logging.handlers.SocketHandler('localhost',
1262 logging.handlers.DEFAULT_TCP_LOGGING_PORT)
1263 # don't bother with a formatter, since a socket handler sends the event as
1264 # an unformatted pickle
1265 rootLogger.addHandler(socketHandler)
1266
1267 # Now, we can log to the root logger, or any other logger. First the root...
1268 logging.info('Jackdaws love my big sphinx of quartz.')
1269
1270 # Now, define a couple of other loggers which might represent areas in your
1271 # application:
1272
1273 logger1 = logging.getLogger('myapp.area1')
1274 logger2 = logging.getLogger('myapp.area2')
1275
1276 logger1.debug('Quick zephyrs blow, vexing daft Jim.')
1277 logger1.info('How quickly daft jumping zebras vex.')
1278 logger2.warning('Jail zesty vixen who grabbed pay from quack.')
1279 logger2.error('The five boxing wizards jump quickly.')
1280
1281At the receiving end, you can set up a receiver using the :mod:`SocketServer`
1282module. Here is a basic working example::
1283
1284 import cPickle
1285 import logging
1286 import logging.handlers
1287 import SocketServer
1288 import struct
1289
1290
1291 class LogRecordStreamHandler(SocketServer.StreamRequestHandler):
1292 """Handler for a streaming logging request.
1293
1294 This basically logs the record using whatever logging policy is
1295 configured locally.
1296 """
1297
1298 def handle(self):
1299 """
1300 Handle multiple requests - each expected to be a 4-byte length,
1301 followed by the LogRecord in pickle format. Logs the record
1302 according to whatever policy is configured locally.
1303 """
Collin Winter46334482007-09-10 00:49:57 +00001304 while True:
Georg Brandl116aa622007-08-15 14:28:22 +00001305 chunk = self.connection.recv(4)
1306 if len(chunk) < 4:
1307 break
1308 slen = struct.unpack(">L", chunk)[0]
1309 chunk = self.connection.recv(slen)
1310 while len(chunk) < slen:
1311 chunk = chunk + self.connection.recv(slen - len(chunk))
1312 obj = self.unPickle(chunk)
1313 record = logging.makeLogRecord(obj)
1314 self.handleLogRecord(record)
1315
1316 def unPickle(self, data):
1317 return cPickle.loads(data)
1318
1319 def handleLogRecord(self, record):
1320 # if a name is specified, we use the named logger rather than the one
1321 # implied by the record.
1322 if self.server.logname is not None:
1323 name = self.server.logname
1324 else:
1325 name = record.name
1326 logger = logging.getLogger(name)
1327 # N.B. EVERY record gets logged. This is because Logger.handle
1328 # is normally called AFTER logger-level filtering. If you want
1329 # to do filtering, do it at the client end to save wasting
1330 # cycles and network bandwidth!
1331 logger.handle(record)
1332
1333 class LogRecordSocketReceiver(SocketServer.ThreadingTCPServer):
1334 """simple TCP socket-based logging receiver suitable for testing.
1335 """
1336
1337 allow_reuse_address = 1
1338
1339 def __init__(self, host='localhost',
1340 port=logging.handlers.DEFAULT_TCP_LOGGING_PORT,
1341 handler=LogRecordStreamHandler):
1342 SocketServer.ThreadingTCPServer.__init__(self, (host, port), handler)
1343 self.abort = 0
1344 self.timeout = 1
1345 self.logname = None
1346
1347 def serve_until_stopped(self):
1348 import select
1349 abort = 0
1350 while not abort:
1351 rd, wr, ex = select.select([self.socket.fileno()],
1352 [], [],
1353 self.timeout)
1354 if rd:
1355 self.handle_request()
1356 abort = self.abort
1357
1358 def main():
1359 logging.basicConfig(
1360 format="%(relativeCreated)5d %(name)-15s %(levelname)-8s %(message)s")
1361 tcpserver = LogRecordSocketReceiver()
Georg Brandl6911e3c2007-09-04 07:15:32 +00001362 print("About to start TCP server...")
Georg Brandl116aa622007-08-15 14:28:22 +00001363 tcpserver.serve_until_stopped()
1364
1365 if __name__ == "__main__":
1366 main()
1367
1368First run the server, and then the client. On the client side, nothing is
1369printed on the console; on the server side, you should see something like::
1370
1371 About to start TCP server...
1372 59 root INFO Jackdaws love my big sphinx of quartz.
1373 59 myapp.area1 DEBUG Quick zephyrs blow, vexing daft Jim.
1374 69 myapp.area1 INFO How quickly daft jumping zebras vex.
1375 69 myapp.area2 WARNING Jail zesty vixen who grabbed pay from quack.
1376 69 myapp.area2 ERROR The five boxing wizards jump quickly.
1377
1378
1379Handler Objects
1380---------------
1381
1382Handlers have the following attributes and methods. Note that :class:`Handler`
1383is never instantiated directly; this class acts as a base for more useful
1384subclasses. However, the :meth:`__init__` method in subclasses needs to call
1385:meth:`Handler.__init__`.
1386
1387
1388.. method:: Handler.__init__(level=NOTSET)
1389
1390 Initializes the :class:`Handler` instance by setting its level, setting the list
1391 of filters to the empty list and creating a lock (using :meth:`createLock`) for
1392 serializing access to an I/O mechanism.
1393
1394
1395.. method:: Handler.createLock()
1396
1397 Initializes a thread lock which can be used to serialize access to underlying
1398 I/O functionality which may not be threadsafe.
1399
1400
1401.. method:: Handler.acquire()
1402
1403 Acquires the thread lock created with :meth:`createLock`.
1404
1405
1406.. method:: Handler.release()
1407
1408 Releases the thread lock acquired with :meth:`acquire`.
1409
1410
1411.. method:: Handler.setLevel(lvl)
1412
1413 Sets the threshold for this handler to *lvl*. Logging messages which are less
1414 severe than *lvl* will be ignored. When a handler is created, the level is set
1415 to :const:`NOTSET` (which causes all messages to be processed).
1416
1417
1418.. method:: Handler.setFormatter(form)
1419
1420 Sets the :class:`Formatter` for this handler to *form*.
1421
1422
1423.. method:: Handler.addFilter(filt)
1424
1425 Adds the specified filter *filt* to this handler.
1426
1427
1428.. method:: Handler.removeFilter(filt)
1429
1430 Removes the specified filter *filt* from this handler.
1431
1432
1433.. method:: Handler.filter(record)
1434
1435 Applies this handler's filters to the record and returns a true value if the
1436 record is to be processed.
1437
1438
1439.. method:: Handler.flush()
1440
1441 Ensure all logging output has been flushed. This version does nothing and is
1442 intended to be implemented by subclasses.
1443
1444
1445.. method:: Handler.close()
1446
1447 Tidy up any resources used by the handler. This version does nothing and is
1448 intended to be implemented by subclasses.
1449
1450
1451.. method:: Handler.handle(record)
1452
1453 Conditionally emits the specified logging record, depending on filters which may
1454 have been added to the handler. Wraps the actual emission of the record with
1455 acquisition/release of the I/O thread lock.
1456
1457
1458.. method:: Handler.handleError(record)
1459
1460 This method should be called from handlers when an exception is encountered
1461 during an :meth:`emit` call. By default it does nothing, which means that
1462 exceptions get silently ignored. This is what is mostly wanted for a logging
1463 system - most users will not care about errors in the logging system, they are
1464 more interested in application errors. You could, however, replace this with a
1465 custom handler if you wish. The specified record is the one which was being
1466 processed when the exception occurred.
1467
1468
1469.. method:: Handler.format(record)
1470
1471 Do formatting for a record - if a formatter is set, use it. Otherwise, use the
1472 default formatter for the module.
1473
1474
1475.. method:: Handler.emit(record)
1476
1477 Do whatever it takes to actually log the specified logging record. This version
1478 is intended to be implemented by subclasses and so raises a
1479 :exc:`NotImplementedError`.
1480
1481
1482StreamHandler
1483^^^^^^^^^^^^^
1484
1485The :class:`StreamHandler` class, located in the core :mod:`logging` package,
1486sends logging output to streams such as *sys.stdout*, *sys.stderr* or any
1487file-like object (or, more precisely, any object which supports :meth:`write`
1488and :meth:`flush` methods).
1489
1490
1491.. class:: StreamHandler([strm])
1492
1493 Returns a new instance of the :class:`StreamHandler` class. If *strm* is
1494 specified, the instance will use it for logging output; otherwise, *sys.stderr*
1495 will be used.
1496
1497
1498.. method:: StreamHandler.emit(record)
1499
1500 If a formatter is specified, it is used to format the record. The record is then
1501 written to the stream with a trailing newline. If exception information is
1502 present, it is formatted using :func:`traceback.print_exception` and appended to
1503 the stream.
1504
1505
1506.. method:: StreamHandler.flush()
1507
1508 Flushes the stream by calling its :meth:`flush` method. Note that the
1509 :meth:`close` method is inherited from :class:`Handler` and so does nothing, so
1510 an explicit :meth:`flush` call may be needed at times.
1511
1512
1513FileHandler
1514^^^^^^^^^^^
1515
1516The :class:`FileHandler` class, located in the core :mod:`logging` package,
1517sends logging output to a disk file. It inherits the output functionality from
1518:class:`StreamHandler`.
1519
1520
Christian Heimese7a15bb2008-01-24 16:21:45 +00001521.. class:: FileHandler(filename[, mode[, encoding[, delay]]])
Georg Brandl116aa622007-08-15 14:28:22 +00001522
1523 Returns a new instance of the :class:`FileHandler` class. The specified file is
1524 opened and used as the stream for logging. If *mode* is not specified,
1525 :const:`'a'` is used. If *encoding* is not *None*, it is used to open the file
Christian Heimese7a15bb2008-01-24 16:21:45 +00001526 with that encoding. If *delay* is true, then file opening is deferred until the
1527 first call to :meth:`emit`. By default, the file grows indefinitely.
Georg Brandl116aa622007-08-15 14:28:22 +00001528
1529
1530.. method:: FileHandler.close()
1531
1532 Closes the file.
1533
1534
1535.. method:: FileHandler.emit(record)
1536
1537 Outputs the record to the file.
1538
1539
1540WatchedFileHandler
1541^^^^^^^^^^^^^^^^^^
1542
Georg Brandl116aa622007-08-15 14:28:22 +00001543The :class:`WatchedFileHandler` class, located in the :mod:`logging.handlers`
1544module, is a :class:`FileHandler` which watches the file it is logging to. If
1545the file changes, it is closed and reopened using the file name.
1546
1547A file change can happen because of usage of programs such as *newsyslog* and
1548*logrotate* which perform log file rotation. This handler, intended for use
1549under Unix/Linux, watches the file to see if it has changed since the last emit.
1550(A file is deemed to have changed if its device or inode have changed.) If the
1551file has changed, the old file stream is closed, and the file opened to get a
1552new stream.
1553
1554This handler is not appropriate for use under Windows, because under Windows
1555open log files cannot be moved or renamed - logging opens the files with
1556exclusive locks - and so there is no need for such a handler. Furthermore,
1557*ST_INO* is not supported under Windows; :func:`stat` always returns zero for
1558this value.
1559
1560
Christian Heimese7a15bb2008-01-24 16:21:45 +00001561.. class:: WatchedFileHandler(filename[,mode[, encoding[, delay]]])
Georg Brandl116aa622007-08-15 14:28:22 +00001562
1563 Returns a new instance of the :class:`WatchedFileHandler` class. The specified
1564 file is opened and used as the stream for logging. If *mode* is not specified,
1565 :const:`'a'` is used. If *encoding* is not *None*, it is used to open the file
Christian Heimese7a15bb2008-01-24 16:21:45 +00001566 with that encoding. If *delay* is true, then file opening is deferred until the
1567 first call to :meth:`emit`. By default, the file grows indefinitely.
Georg Brandl116aa622007-08-15 14:28:22 +00001568
1569
1570.. method:: WatchedFileHandler.emit(record)
1571
1572 Outputs the record to the file, but first checks to see if the file has changed.
1573 If it has, the existing stream is flushed and closed and the file opened again,
1574 before outputting the record to the file.
1575
1576
1577RotatingFileHandler
1578^^^^^^^^^^^^^^^^^^^
1579
1580The :class:`RotatingFileHandler` class, located in the :mod:`logging.handlers`
1581module, supports rotation of disk log files.
1582
1583
Christian Heimese7a15bb2008-01-24 16:21:45 +00001584.. class:: RotatingFileHandler(filename[, mode[, maxBytes[, backupCount[, encoding[, delay]]]]])
Georg Brandl116aa622007-08-15 14:28:22 +00001585
1586 Returns a new instance of the :class:`RotatingFileHandler` class. The specified
1587 file is opened and used as the stream for logging. If *mode* is not specified,
Christian Heimese7a15bb2008-01-24 16:21:45 +00001588 ``'a'`` is used. If *encoding* is not *None*, it is used to open the file
1589 with that encoding. If *delay* is true, then file opening is deferred until the
1590 first call to :meth:`emit`. By default, the file grows indefinitely.
Georg Brandl116aa622007-08-15 14:28:22 +00001591
1592 You can use the *maxBytes* and *backupCount* values to allow the file to
1593 :dfn:`rollover` at a predetermined size. When the size is about to be exceeded,
1594 the file is closed and a new file is silently opened for output. Rollover occurs
1595 whenever the current log file is nearly *maxBytes* in length; if *maxBytes* is
1596 zero, rollover never occurs. If *backupCount* is non-zero, the system will save
1597 old log files by appending the extensions ".1", ".2" etc., to the filename. For
1598 example, with a *backupCount* of 5 and a base file name of :file:`app.log`, you
1599 would get :file:`app.log`, :file:`app.log.1`, :file:`app.log.2`, up to
1600 :file:`app.log.5`. The file being written to is always :file:`app.log`. When
1601 this file is filled, it is closed and renamed to :file:`app.log.1`, and if files
1602 :file:`app.log.1`, :file:`app.log.2`, etc. exist, then they are renamed to
1603 :file:`app.log.2`, :file:`app.log.3` etc. respectively.
1604
1605
1606.. method:: RotatingFileHandler.doRollover()
1607
1608 Does a rollover, as described above.
1609
1610
1611.. method:: RotatingFileHandler.emit(record)
1612
1613 Outputs the record to the file, catering for rollover as described previously.
1614
1615
1616TimedRotatingFileHandler
1617^^^^^^^^^^^^^^^^^^^^^^^^
1618
1619The :class:`TimedRotatingFileHandler` class, located in the
1620:mod:`logging.handlers` module, supports rotation of disk log files at certain
1621timed intervals.
1622
1623
Christian Heimese7a15bb2008-01-24 16:21:45 +00001624.. class:: TimedRotatingFileHandler(filename [,when [,interval [,backupCount[, encoding[, delay]]]]])
Georg Brandl116aa622007-08-15 14:28:22 +00001625
1626 Returns a new instance of the :class:`TimedRotatingFileHandler` class. The
1627 specified file is opened and used as the stream for logging. On rotating it also
1628 sets the filename suffix. Rotating happens based on the product of *when* and
1629 *interval*.
1630
1631 You can use the *when* to specify the type of *interval*. The list of possible
1632 values is, note that they are not case sensitive:
1633
Christian Heimesb558a2e2008-03-02 22:46:37 +00001634 +----------------+-----------------------+
1635 | Value | Type of interval |
1636 +================+=======================+
1637 | ``'S'`` | Seconds |
1638 +----------------+-----------------------+
1639 | ``'M'`` | Minutes |
1640 +----------------+-----------------------+
1641 | ``'H'`` | Hours |
1642 +----------------+-----------------------+
1643 | ``'D'`` | Days |
1644 +----------------+-----------------------+
1645 | ``'W'`` | Week day (0=Monday) |
1646 +----------------+-----------------------+
1647 | ``'midnight'`` | Roll over at midnight |
1648 +----------------+-----------------------+
Georg Brandl116aa622007-08-15 14:28:22 +00001649
Christian Heimesb558a2e2008-03-02 22:46:37 +00001650 The system will save old log files by appending extensions to the filename.
1651 The extensions are date-and-time based, using the strftime format
Benjamin Petersonad9d48d2008-04-02 21:49:44 +00001652 ``%Y-%m-%d_%H-%M-%S`` or a leading portion thereof, depending on the
1653 rollover interval. If *backupCount* is nonzero, at most *backupCount* files
1654 will be kept, and if more would be created when rollover occurs, the oldest
1655 one is deleted. The deletion logic uses the interval to determine which
1656 files to delete, so changing the interval may leave old files lying around.
Georg Brandl116aa622007-08-15 14:28:22 +00001657
1658
1659.. method:: TimedRotatingFileHandler.doRollover()
1660
1661 Does a rollover, as described above.
1662
1663
1664.. method:: TimedRotatingFileHandler.emit(record)
1665
1666 Outputs the record to the file, catering for rollover as described above.
1667
1668
1669SocketHandler
1670^^^^^^^^^^^^^
1671
1672The :class:`SocketHandler` class, located in the :mod:`logging.handlers` module,
1673sends logging output to a network socket. The base class uses a TCP socket.
1674
1675
1676.. class:: SocketHandler(host, port)
1677
1678 Returns a new instance of the :class:`SocketHandler` class intended to
1679 communicate with a remote machine whose address is given by *host* and *port*.
1680
1681
1682.. method:: SocketHandler.close()
1683
1684 Closes the socket.
1685
1686
1687.. method:: SocketHandler.emit()
1688
1689 Pickles the record's attribute dictionary and writes it to the socket in binary
1690 format. If there is an error with the socket, silently drops the packet. If the
1691 connection was previously lost, re-establishes the connection. To unpickle the
1692 record at the receiving end into a :class:`LogRecord`, use the
1693 :func:`makeLogRecord` function.
1694
1695
1696.. method:: SocketHandler.handleError()
1697
1698 Handles an error which has occurred during :meth:`emit`. The most likely cause
1699 is a lost connection. Closes the socket so that we can retry on the next event.
1700
1701
1702.. method:: SocketHandler.makeSocket()
1703
1704 This is a factory method which allows subclasses to define the precise type of
1705 socket they want. The default implementation creates a TCP socket
1706 (:const:`socket.SOCK_STREAM`).
1707
1708
1709.. method:: SocketHandler.makePickle(record)
1710
1711 Pickles the record's attribute dictionary in binary format with a length prefix,
1712 and returns it ready for transmission across the socket.
1713
1714
1715.. method:: SocketHandler.send(packet)
1716
1717 Send a pickled string *packet* to the socket. This function allows for partial
1718 sends which can happen when the network is busy.
1719
1720
1721DatagramHandler
1722^^^^^^^^^^^^^^^
1723
1724The :class:`DatagramHandler` class, located in the :mod:`logging.handlers`
1725module, inherits from :class:`SocketHandler` to support sending logging messages
1726over UDP sockets.
1727
1728
1729.. class:: DatagramHandler(host, port)
1730
1731 Returns a new instance of the :class:`DatagramHandler` class intended to
1732 communicate with a remote machine whose address is given by *host* and *port*.
1733
1734
1735.. method:: DatagramHandler.emit()
1736
1737 Pickles the record's attribute dictionary and writes it to the socket in binary
1738 format. If there is an error with the socket, silently drops the packet. To
1739 unpickle the record at the receiving end into a :class:`LogRecord`, use the
1740 :func:`makeLogRecord` function.
1741
1742
1743.. method:: DatagramHandler.makeSocket()
1744
1745 The factory method of :class:`SocketHandler` is here overridden to create a UDP
1746 socket (:const:`socket.SOCK_DGRAM`).
1747
1748
1749.. method:: DatagramHandler.send(s)
1750
1751 Send a pickled string to a socket.
1752
1753
1754SysLogHandler
1755^^^^^^^^^^^^^
1756
1757The :class:`SysLogHandler` class, located in the :mod:`logging.handlers` module,
1758supports sending logging messages to a remote or local Unix syslog.
1759
1760
1761.. class:: SysLogHandler([address[, facility]])
1762
1763 Returns a new instance of the :class:`SysLogHandler` class intended to
1764 communicate with a remote Unix machine whose address is given by *address* in
1765 the form of a ``(host, port)`` tuple. If *address* is not specified,
1766 ``('localhost', 514)`` is used. The address is used to open a UDP socket. An
1767 alternative to providing a ``(host, port)`` tuple is providing an address as a
1768 string, for example "/dev/log". In this case, a Unix domain socket is used to
1769 send the message to the syslog. If *facility* is not specified,
1770 :const:`LOG_USER` is used.
1771
1772
1773.. method:: SysLogHandler.close()
1774
1775 Closes the socket to the remote host.
1776
1777
1778.. method:: SysLogHandler.emit(record)
1779
1780 The record is formatted, and then sent to the syslog server. If exception
1781 information is present, it is *not* sent to the server.
1782
1783
1784.. method:: SysLogHandler.encodePriority(facility, priority)
1785
1786 Encodes the facility and priority into an integer. You can pass in strings or
1787 integers - if strings are passed, internal mapping dictionaries are used to
1788 convert them to integers.
1789
1790
1791NTEventLogHandler
1792^^^^^^^^^^^^^^^^^
1793
1794The :class:`NTEventLogHandler` class, located in the :mod:`logging.handlers`
1795module, supports sending logging messages to a local Windows NT, Windows 2000 or
1796Windows XP event log. Before you can use it, you need Mark Hammond's Win32
1797extensions for Python installed.
1798
1799
1800.. class:: NTEventLogHandler(appname[, dllname[, logtype]])
1801
1802 Returns a new instance of the :class:`NTEventLogHandler` class. The *appname* is
1803 used to define the application name as it appears in the event log. An
1804 appropriate registry entry is created using this name. The *dllname* should give
1805 the fully qualified pathname of a .dll or .exe which contains message
1806 definitions to hold in the log (if not specified, ``'win32service.pyd'`` is used
1807 - this is installed with the Win32 extensions and contains some basic
1808 placeholder message definitions. Note that use of these placeholders will make
1809 your event logs big, as the entire message source is held in the log. If you
1810 want slimmer logs, you have to pass in the name of your own .dll or .exe which
1811 contains the message definitions you want to use in the event log). The
1812 *logtype* is one of ``'Application'``, ``'System'`` or ``'Security'``, and
1813 defaults to ``'Application'``.
1814
1815
1816.. method:: NTEventLogHandler.close()
1817
1818 At this point, you can remove the application name from the registry as a source
1819 of event log entries. However, if you do this, you will not be able to see the
1820 events as you intended in the Event Log Viewer - it needs to be able to access
1821 the registry to get the .dll name. The current version does not do this (in fact
1822 it doesn't do anything).
1823
1824
1825.. method:: NTEventLogHandler.emit(record)
1826
1827 Determines the message ID, event category and event type, and then logs the
1828 message in the NT event log.
1829
1830
1831.. method:: NTEventLogHandler.getEventCategory(record)
1832
1833 Returns the event category for the record. Override this if you want to specify
1834 your own categories. This version returns 0.
1835
1836
1837.. method:: NTEventLogHandler.getEventType(record)
1838
1839 Returns the event type for the record. Override this if you want to specify your
1840 own types. This version does a mapping using the handler's typemap attribute,
1841 which is set up in :meth:`__init__` to a dictionary which contains mappings for
1842 :const:`DEBUG`, :const:`INFO`, :const:`WARNING`, :const:`ERROR` and
1843 :const:`CRITICAL`. If you are using your own levels, you will either need to
1844 override this method or place a suitable dictionary in the handler's *typemap*
1845 attribute.
1846
1847
1848.. method:: NTEventLogHandler.getMessageID(record)
1849
1850 Returns the message ID for the record. If you are using your own messages, you
1851 could do this by having the *msg* passed to the logger being an ID rather than a
1852 format string. Then, in here, you could use a dictionary lookup to get the
1853 message ID. This version returns 1, which is the base message ID in
1854 :file:`win32service.pyd`.
1855
1856
1857SMTPHandler
1858^^^^^^^^^^^
1859
1860The :class:`SMTPHandler` class, located in the :mod:`logging.handlers` module,
1861supports sending logging messages to an email address via SMTP.
1862
1863
1864.. class:: SMTPHandler(mailhost, fromaddr, toaddrs, subject[, credentials])
1865
1866 Returns a new instance of the :class:`SMTPHandler` class. The instance is
1867 initialized with the from and to addresses and subject line of the email. The
1868 *toaddrs* should be a list of strings. To specify a non-standard SMTP port, use
1869 the (host, port) tuple format for the *mailhost* argument. If you use a string,
1870 the standard SMTP port is used. If your SMTP server requires authentication, you
1871 can specify a (username, password) tuple for the *credentials* argument.
1872
Georg Brandl116aa622007-08-15 14:28:22 +00001873
1874.. method:: SMTPHandler.emit(record)
1875
1876 Formats the record and sends it to the specified addressees.
1877
1878
1879.. method:: SMTPHandler.getSubject(record)
1880
1881 If you want to specify a subject line which is record-dependent, override this
1882 method.
1883
1884
1885MemoryHandler
1886^^^^^^^^^^^^^
1887
1888The :class:`MemoryHandler` class, located in the :mod:`logging.handlers` module,
1889supports buffering of logging records in memory, periodically flushing them to a
1890:dfn:`target` handler. Flushing occurs whenever the buffer is full, or when an
1891event of a certain severity or greater is seen.
1892
1893:class:`MemoryHandler` is a subclass of the more general
1894:class:`BufferingHandler`, which is an abstract class. This buffers logging
1895records in memory. Whenever each record is added to the buffer, a check is made
1896by calling :meth:`shouldFlush` to see if the buffer should be flushed. If it
1897should, then :meth:`flush` is expected to do the needful.
1898
1899
1900.. class:: BufferingHandler(capacity)
1901
1902 Initializes the handler with a buffer of the specified capacity.
1903
1904
1905.. method:: BufferingHandler.emit(record)
1906
1907 Appends the record to the buffer. If :meth:`shouldFlush` returns true, calls
1908 :meth:`flush` to process the buffer.
1909
1910
1911.. method:: BufferingHandler.flush()
1912
1913 You can override this to implement custom flushing behavior. This version just
1914 zaps the buffer to empty.
1915
1916
1917.. method:: BufferingHandler.shouldFlush(record)
1918
1919 Returns true if the buffer is up to capacity. This method can be overridden to
1920 implement custom flushing strategies.
1921
1922
1923.. class:: MemoryHandler(capacity[, flushLevel [, target]])
1924
1925 Returns a new instance of the :class:`MemoryHandler` class. The instance is
1926 initialized with a buffer size of *capacity*. If *flushLevel* is not specified,
1927 :const:`ERROR` is used. If no *target* is specified, the target will need to be
1928 set using :meth:`setTarget` before this handler does anything useful.
1929
1930
1931.. method:: MemoryHandler.close()
1932
1933 Calls :meth:`flush`, sets the target to :const:`None` and clears the buffer.
1934
1935
1936.. method:: MemoryHandler.flush()
1937
1938 For a :class:`MemoryHandler`, flushing means just sending the buffered records
1939 to the target, if there is one. Override if you want different behavior.
1940
1941
1942.. method:: MemoryHandler.setTarget(target)
1943
1944 Sets the target handler for this handler.
1945
1946
1947.. method:: MemoryHandler.shouldFlush(record)
1948
1949 Checks for buffer full or a record at the *flushLevel* or higher.
1950
1951
1952HTTPHandler
1953^^^^^^^^^^^
1954
1955The :class:`HTTPHandler` class, located in the :mod:`logging.handlers` module,
1956supports sending logging messages to a Web server, using either ``GET`` or
1957``POST`` semantics.
1958
1959
1960.. class:: HTTPHandler(host, url[, method])
1961
1962 Returns a new instance of the :class:`HTTPHandler` class. The instance is
1963 initialized with a host address, url and HTTP method. The *host* can be of the
1964 form ``host:port``, should you need to use a specific port number. If no
1965 *method* is specified, ``GET`` is used.
1966
1967
1968.. method:: HTTPHandler.emit(record)
1969
1970 Sends the record to the Web server as an URL-encoded dictionary.
1971
1972
Christian Heimes8b0facf2007-12-04 19:30:01 +00001973.. _formatter-objects:
1974
Georg Brandl116aa622007-08-15 14:28:22 +00001975Formatter Objects
1976-----------------
1977
1978:class:`Formatter`\ s have the following attributes and methods. They are
1979responsible for converting a :class:`LogRecord` to (usually) a string which can
1980be interpreted by either a human or an external system. The base
1981:class:`Formatter` allows a formatting string to be specified. If none is
1982supplied, the default value of ``'%(message)s'`` is used.
1983
1984A Formatter can be initialized with a format string which makes use of knowledge
1985of the :class:`LogRecord` attributes - such as the default value mentioned above
1986making use of the fact that the user's message and arguments are pre-formatted
1987into a :class:`LogRecord`'s *message* attribute. This format string contains
Georg Brandl4b491312007-08-31 09:22:56 +00001988standard python %-style mapping keys. See section :ref:`old-string-formatting`
Georg Brandl116aa622007-08-15 14:28:22 +00001989for more information on string formatting.
1990
1991Currently, the useful mapping keys in a :class:`LogRecord` are:
1992
1993+-------------------------+-----------------------------------------------+
1994| Format | Description |
1995+=========================+===============================================+
1996| ``%(name)s`` | Name of the logger (logging channel). |
1997+-------------------------+-----------------------------------------------+
1998| ``%(levelno)s`` | Numeric logging level for the message |
1999| | (:const:`DEBUG`, :const:`INFO`, |
2000| | :const:`WARNING`, :const:`ERROR`, |
2001| | :const:`CRITICAL`). |
2002+-------------------------+-----------------------------------------------+
2003| ``%(levelname)s`` | Text logging level for the message |
2004| | (``'DEBUG'``, ``'INFO'``, ``'WARNING'``, |
2005| | ``'ERROR'``, ``'CRITICAL'``). |
2006+-------------------------+-----------------------------------------------+
2007| ``%(pathname)s`` | Full pathname of the source file where the |
2008| | logging call was issued (if available). |
2009+-------------------------+-----------------------------------------------+
2010| ``%(filename)s`` | Filename portion of pathname. |
2011+-------------------------+-----------------------------------------------+
2012| ``%(module)s`` | Module (name portion of filename). |
2013+-------------------------+-----------------------------------------------+
2014| ``%(funcName)s`` | Name of function containing the logging call. |
2015+-------------------------+-----------------------------------------------+
2016| ``%(lineno)d`` | Source line number where the logging call was |
2017| | issued (if available). |
2018+-------------------------+-----------------------------------------------+
2019| ``%(created)f`` | Time when the :class:`LogRecord` was created |
2020| | (as returned by :func:`time.time`). |
2021+-------------------------+-----------------------------------------------+
2022| ``%(relativeCreated)d`` | Time in milliseconds when the LogRecord was |
2023| | created, relative to the time the logging |
2024| | module was loaded. |
2025+-------------------------+-----------------------------------------------+
2026| ``%(asctime)s`` | Human-readable time when the |
2027| | :class:`LogRecord` was created. By default |
2028| | this is of the form "2003-07-08 16:49:45,896" |
2029| | (the numbers after the comma are millisecond |
2030| | portion of the time). |
2031+-------------------------+-----------------------------------------------+
2032| ``%(msecs)d`` | Millisecond portion of the time when the |
2033| | :class:`LogRecord` was created. |
2034+-------------------------+-----------------------------------------------+
2035| ``%(thread)d`` | Thread ID (if available). |
2036+-------------------------+-----------------------------------------------+
2037| ``%(threadName)s`` | Thread name (if available). |
2038+-------------------------+-----------------------------------------------+
2039| ``%(process)d`` | Process ID (if available). |
2040+-------------------------+-----------------------------------------------+
2041| ``%(message)s`` | The logged message, computed as ``msg % |
2042| | args``. |
2043+-------------------------+-----------------------------------------------+
2044
Georg Brandl116aa622007-08-15 14:28:22 +00002045
2046.. class:: Formatter([fmt[, datefmt]])
2047
2048 Returns a new instance of the :class:`Formatter` class. The instance is
2049 initialized with a format string for the message as a whole, as well as a format
2050 string for the date/time portion of a message. If no *fmt* is specified,
2051 ``'%(message)s'`` is used. If no *datefmt* is specified, the ISO8601 date format
2052 is used.
2053
2054
2055.. method:: Formatter.format(record)
2056
2057 The record's attribute dictionary is used as the operand to a string formatting
2058 operation. Returns the resulting string. Before formatting the dictionary, a
2059 couple of preparatory steps are carried out. The *message* attribute of the
2060 record is computed using *msg* % *args*. If the formatting string contains
2061 ``'(asctime)'``, :meth:`formatTime` is called to format the event time. If there
2062 is exception information, it is formatted using :meth:`formatException` and
Christian Heimese7a15bb2008-01-24 16:21:45 +00002063 appended to the message. Note that the formatted exception information is cached
2064 in attribute *exc_text*. This is useful because the exception information can
2065 be pickled and sent across the wire, but you should be careful if you have more
2066 than one :class:`Formatter` subclass which customizes the formatting of exception
2067 information. In this case, you will have to clear the cached value after a
2068 formatter has done its formatting, so that the next formatter to handle the event
2069 doesn't use the cached value but recalculates it afresh.
Georg Brandl116aa622007-08-15 14:28:22 +00002070
2071
2072.. method:: Formatter.formatTime(record[, datefmt])
2073
2074 This method should be called from :meth:`format` by a formatter which wants to
2075 make use of a formatted time. This method can be overridden in formatters to
2076 provide for any specific requirement, but the basic behavior is as follows: if
2077 *datefmt* (a string) is specified, it is used with :func:`time.strftime` to
2078 format the creation time of the record. Otherwise, the ISO8601 format is used.
2079 The resulting string is returned.
2080
2081
2082.. method:: Formatter.formatException(exc_info)
2083
2084 Formats the specified exception information (a standard exception tuple as
2085 returned by :func:`sys.exc_info`) as a string. This default implementation just
2086 uses :func:`traceback.print_exception`. The resulting string is returned.
2087
2088
2089Filter Objects
2090--------------
2091
2092:class:`Filter`\ s can be used by :class:`Handler`\ s and :class:`Logger`\ s for
2093more sophisticated filtering than is provided by levels. The base filter class
2094only allows events which are below a certain point in the logger hierarchy. For
2095example, a filter initialized with "A.B" will allow events logged by loggers
2096"A.B", "A.B.C", "A.B.C.D", "A.B.D" etc. but not "A.BB", "B.A.B" etc. If
2097initialized with the empty string, all events are passed.
2098
2099
2100.. class:: Filter([name])
2101
2102 Returns an instance of the :class:`Filter` class. If *name* is specified, it
2103 names a logger which, together with its children, will have its events allowed
2104 through the filter. If no name is specified, allows every event.
2105
2106
2107.. method:: Filter.filter(record)
2108
2109 Is the specified record to be logged? Returns zero for no, nonzero for yes. If
2110 deemed appropriate, the record may be modified in-place by this method.
2111
2112
2113LogRecord Objects
2114-----------------
2115
2116:class:`LogRecord` instances are created every time something is logged. They
2117contain all the information pertinent to the event being logged. The main
2118information passed in is in msg and args, which are combined using msg % args to
2119create the message field of the record. The record also includes information
2120such as when the record was created, the source line where the logging call was
2121made, and any exception information to be logged.
2122
2123
2124.. class:: LogRecord(name, lvl, pathname, lineno, msg, args, exc_info [, func])
2125
2126 Returns an instance of :class:`LogRecord` initialized with interesting
2127 information. The *name* is the logger name; *lvl* is the numeric level;
2128 *pathname* is the absolute pathname of the source file in which the logging
2129 call was made; *lineno* is the line number in that file where the logging
2130 call is found; *msg* is the user-supplied message (a format string); *args*
2131 is the tuple which, together with *msg*, makes up the user message; and
2132 *exc_info* is the exception tuple obtained by calling :func:`sys.exc_info`
2133 (or :const:`None`, if no exception information is available). The *func* is
2134 the name of the function from which the logging call was made. If not
2135 specified, it defaults to ``None``.
2136
Georg Brandl116aa622007-08-15 14:28:22 +00002137
2138.. method:: LogRecord.getMessage()
2139
2140 Returns the message for this :class:`LogRecord` instance after merging any
2141 user-supplied arguments with the message.
2142
Christian Heimes04c420f2008-01-18 18:40:46 +00002143LoggerAdapter Objects
2144---------------------
2145
2146.. versionadded:: 2.6
2147
2148:class:`LoggerAdapter` instances are used to conveniently pass contextual
Georg Brandl86def6c2008-01-21 20:36:10 +00002149information into logging calls. For a usage example , see the section on
2150`adding contextual information to your logging output`__.
2151
2152__ context-info_
Christian Heimes04c420f2008-01-18 18:40:46 +00002153
2154.. class:: LoggerAdapter(logger, extra)
2155
2156 Returns an instance of :class:`LoggerAdapter` initialized with an
2157 underlying :class:`Logger` instance and a dict-like object.
2158
2159.. method:: LoggerAdapter.process(msg, kwargs)
2160
2161 Modifies the message and/or keyword arguments passed to a logging call in
2162 order to insert contextual information. This implementation takes the
2163 object passed as *extra* to the constructor and adds it to *kwargs* using
2164 key 'extra'. The return value is a (*msg*, *kwargs*) tuple which has the
2165 (possibly modified) versions of the arguments passed in.
2166
2167In addition to the above, :class:`LoggerAdapter` supports all the logging
2168methods of :class:`Logger`, i.e. :meth:`debug`, :meth:`info`, :meth:`warning`,
2169:meth:`error`, :meth:`exception`, :meth:`critical` and :meth:`log`. These
2170methods have the same signatures as their counterparts in :class:`Logger`, so
2171you can use the two types of instances interchangeably.
2172
Georg Brandl116aa622007-08-15 14:28:22 +00002173
2174Thread Safety
2175-------------
2176
2177The logging module is intended to be thread-safe without any special work
2178needing to be done by its clients. It achieves this though using threading
2179locks; there is one lock to serialize access to the module's shared data, and
2180each handler also creates a lock to serialize access to its underlying I/O.
2181
2182
2183Configuration
2184-------------
2185
2186
2187.. _logging-config-api:
2188
2189Configuration functions
2190^^^^^^^^^^^^^^^^^^^^^^^
2191
Georg Brandl116aa622007-08-15 14:28:22 +00002192The following functions configure the logging module. They are located in the
2193:mod:`logging.config` module. Their use is optional --- you can configure the
2194logging module using these functions or by making calls to the main API (defined
2195in :mod:`logging` itself) and defining handlers which are declared either in
2196:mod:`logging` or :mod:`logging.handlers`.
2197
2198
2199.. function:: fileConfig(fname[, defaults])
2200
2201 Reads the logging configuration from a ConfigParser-format file named *fname*.
2202 This function can be called several times from an application, allowing an end
2203 user the ability to select from various pre-canned configurations (if the
2204 developer provides a mechanism to present the choices and load the chosen
2205 configuration). Defaults to be passed to ConfigParser can be specified in the
2206 *defaults* argument.
2207
2208
2209.. function:: listen([port])
2210
2211 Starts up a socket server on the specified port, and listens for new
2212 configurations. If no port is specified, the module's default
2213 :const:`DEFAULT_LOGGING_CONFIG_PORT` is used. Logging configurations will be
2214 sent as a file suitable for processing by :func:`fileConfig`. Returns a
2215 :class:`Thread` instance on which you can call :meth:`start` to start the
2216 server, and which you can :meth:`join` when appropriate. To stop the server,
Christian Heimes8b0facf2007-12-04 19:30:01 +00002217 call :func:`stopListening`.
2218
2219 To send a configuration to the socket, read in the configuration file and
2220 send it to the socket as a string of bytes preceded by a four-byte length
2221 string packed in binary using ``struct.pack('>L', n)``.
Georg Brandl116aa622007-08-15 14:28:22 +00002222
2223
2224.. function:: stopListening()
2225
Christian Heimes8b0facf2007-12-04 19:30:01 +00002226 Stops the listening server which was created with a call to :func:`listen`.
2227 This is typically called before calling :meth:`join` on the return value from
Georg Brandl116aa622007-08-15 14:28:22 +00002228 :func:`listen`.
2229
2230
2231.. _logging-config-fileformat:
2232
2233Configuration file format
2234^^^^^^^^^^^^^^^^^^^^^^^^^
2235
Georg Brandl116aa622007-08-15 14:28:22 +00002236The configuration file format understood by :func:`fileConfig` is based on
2237ConfigParser functionality. The file must contain sections called ``[loggers]``,
2238``[handlers]`` and ``[formatters]`` which identify by name the entities of each
2239type which are defined in the file. For each such entity, there is a separate
2240section which identified how that entity is configured. Thus, for a logger named
2241``log01`` in the ``[loggers]`` section, the relevant configuration details are
2242held in a section ``[logger_log01]``. Similarly, a handler called ``hand01`` in
2243the ``[handlers]`` section will have its configuration held in a section called
2244``[handler_hand01]``, while a formatter called ``form01`` in the
2245``[formatters]`` section will have its configuration specified in a section
2246called ``[formatter_form01]``. The root logger configuration must be specified
2247in a section called ``[logger_root]``.
2248
2249Examples of these sections in the file are given below. ::
2250
2251 [loggers]
2252 keys=root,log02,log03,log04,log05,log06,log07
2253
2254 [handlers]
2255 keys=hand01,hand02,hand03,hand04,hand05,hand06,hand07,hand08,hand09
2256
2257 [formatters]
2258 keys=form01,form02,form03,form04,form05,form06,form07,form08,form09
2259
2260The root logger must specify a level and a list of handlers. An example of a
2261root logger section is given below. ::
2262
2263 [logger_root]
2264 level=NOTSET
2265 handlers=hand01
2266
2267The ``level`` entry can be one of ``DEBUG, INFO, WARNING, ERROR, CRITICAL`` or
2268``NOTSET``. For the root logger only, ``NOTSET`` means that all messages will be
2269logged. Level values are :func:`eval`\ uated in the context of the ``logging``
2270package's namespace.
2271
2272The ``handlers`` entry is a comma-separated list of handler names, which must
2273appear in the ``[handlers]`` section. These names must appear in the
2274``[handlers]`` section and have corresponding sections in the configuration
2275file.
2276
2277For loggers other than the root logger, some additional information is required.
2278This is illustrated by the following example. ::
2279
2280 [logger_parser]
2281 level=DEBUG
2282 handlers=hand01
2283 propagate=1
2284 qualname=compiler.parser
2285
2286The ``level`` and ``handlers`` entries are interpreted as for the root logger,
2287except that if a non-root logger's level is specified as ``NOTSET``, the system
2288consults loggers higher up the hierarchy to determine the effective level of the
2289logger. The ``propagate`` entry is set to 1 to indicate that messages must
2290propagate to handlers higher up the logger hierarchy from this logger, or 0 to
2291indicate that messages are **not** propagated to handlers up the hierarchy. The
2292``qualname`` entry is the hierarchical channel name of the logger, that is to
2293say the name used by the application to get the logger.
2294
2295Sections which specify handler configuration are exemplified by the following.
2296::
2297
2298 [handler_hand01]
2299 class=StreamHandler
2300 level=NOTSET
2301 formatter=form01
2302 args=(sys.stdout,)
2303
2304The ``class`` entry indicates the handler's class (as determined by :func:`eval`
2305in the ``logging`` package's namespace). The ``level`` is interpreted as for
2306loggers, and ``NOTSET`` is taken to mean "log everything".
2307
2308The ``formatter`` entry indicates the key name of the formatter for this
2309handler. If blank, a default formatter (``logging._defaultFormatter``) is used.
2310If a name is specified, it must appear in the ``[formatters]`` section and have
2311a corresponding section in the configuration file.
2312
2313The ``args`` entry, when :func:`eval`\ uated in the context of the ``logging``
2314package's namespace, is the list of arguments to the constructor for the handler
2315class. Refer to the constructors for the relevant handlers, or to the examples
2316below, to see how typical entries are constructed. ::
2317
2318 [handler_hand02]
2319 class=FileHandler
2320 level=DEBUG
2321 formatter=form02
2322 args=('python.log', 'w')
2323
2324 [handler_hand03]
2325 class=handlers.SocketHandler
2326 level=INFO
2327 formatter=form03
2328 args=('localhost', handlers.DEFAULT_TCP_LOGGING_PORT)
2329
2330 [handler_hand04]
2331 class=handlers.DatagramHandler
2332 level=WARN
2333 formatter=form04
2334 args=('localhost', handlers.DEFAULT_UDP_LOGGING_PORT)
2335
2336 [handler_hand05]
2337 class=handlers.SysLogHandler
2338 level=ERROR
2339 formatter=form05
2340 args=(('localhost', handlers.SYSLOG_UDP_PORT), handlers.SysLogHandler.LOG_USER)
2341
2342 [handler_hand06]
2343 class=handlers.NTEventLogHandler
2344 level=CRITICAL
2345 formatter=form06
2346 args=('Python Application', '', 'Application')
2347
2348 [handler_hand07]
2349 class=handlers.SMTPHandler
2350 level=WARN
2351 formatter=form07
2352 args=('localhost', 'from@abc', ['user1@abc', 'user2@xyz'], 'Logger Subject')
2353
2354 [handler_hand08]
2355 class=handlers.MemoryHandler
2356 level=NOTSET
2357 formatter=form08
2358 target=
2359 args=(10, ERROR)
2360
2361 [handler_hand09]
2362 class=handlers.HTTPHandler
2363 level=NOTSET
2364 formatter=form09
2365 args=('localhost:9022', '/log', 'GET')
2366
2367Sections which specify formatter configuration are typified by the following. ::
2368
2369 [formatter_form01]
2370 format=F1 %(asctime)s %(levelname)s %(message)s
2371 datefmt=
2372 class=logging.Formatter
2373
2374The ``format`` entry is the overall format string, and the ``datefmt`` entry is
Christian Heimes5b5e81c2007-12-31 16:14:33 +00002375the :func:`strftime`\ -compatible date/time format string. If empty, the
2376package substitutes ISO8601 format date/times, which is almost equivalent to
2377specifying the date format string ``"%Y-%m-%d %H:%M:%S"``. The ISO8601 format
2378also specifies milliseconds, which are appended to the result of using the above
2379format string, with a comma separator. An example time in ISO8601 format is
2380``2003-01-23 00:29:50,411``.
Georg Brandl116aa622007-08-15 14:28:22 +00002381
2382The ``class`` entry is optional. It indicates the name of the formatter's class
2383(as a dotted module and class name.) This option is useful for instantiating a
2384:class:`Formatter` subclass. Subclasses of :class:`Formatter` can present
2385exception tracebacks in an expanded or condensed format.
2386
Christian Heimes8b0facf2007-12-04 19:30:01 +00002387
2388Configuration server example
2389^^^^^^^^^^^^^^^^^^^^^^^^^^^^
2390
2391Here is an example of a module using the logging configuration server::
2392
2393 import logging
2394 import logging.config
2395 import time
2396 import os
2397
2398 # read initial config file
2399 logging.config.fileConfig("logging.conf")
2400
2401 # create and start listener on port 9999
2402 t = logging.config.listen(9999)
2403 t.start()
2404
2405 logger = logging.getLogger("simpleExample")
2406
2407 try:
2408 # loop through logging calls to see the difference
2409 # new configurations make, until Ctrl+C is pressed
2410 while True:
2411 logger.debug("debug message")
2412 logger.info("info message")
2413 logger.warn("warn message")
2414 logger.error("error message")
2415 logger.critical("critical message")
2416 time.sleep(5)
2417 except KeyboardInterrupt:
2418 # cleanup
2419 logging.config.stopListening()
2420 t.join()
2421
2422And here is a script that takes a filename and sends that file to the server,
2423properly preceded with the binary-encoded length, as the new logging
2424configuration::
2425
2426 #!/usr/bin/env python
2427 import socket, sys, struct
2428
2429 data_to_send = open(sys.argv[1], "r").read()
2430
2431 HOST = 'localhost'
2432 PORT = 9999
2433 s = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
Georg Brandlf6945182008-02-01 11:56:49 +00002434 print("connecting...")
Christian Heimes8b0facf2007-12-04 19:30:01 +00002435 s.connect((HOST, PORT))
Georg Brandlf6945182008-02-01 11:56:49 +00002436 print("sending config...")
Christian Heimes8b0facf2007-12-04 19:30:01 +00002437 s.send(struct.pack(">L", len(data_to_send)))
2438 s.send(data_to_send)
2439 s.close()
Georg Brandlf6945182008-02-01 11:56:49 +00002440 print("complete")
Christian Heimes8b0facf2007-12-04 19:30:01 +00002441
2442
2443More examples
2444-------------
2445
2446Multiple handlers and formatters
2447^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
2448
2449Loggers are plain Python objects. The :func:`addHandler` method has no minimum
2450or maximum quota for the number of handlers you may add. Sometimes it will be
2451beneficial for an application to log all messages of all severities to a text
2452file while simultaneously logging errors or above to the console. To set this
2453up, simply configure the appropriate handlers. The logging calls in the
2454application code will remain unchanged. Here is a slight modification to the
2455previous simple module-based configuration example::
2456
2457 import logging
2458
2459 logger = logging.getLogger("simple_example")
2460 logger.setLevel(logging.DEBUG)
2461 # create file handler which logs even debug messages
2462 fh = logging.FileHandler("spam.log")
2463 fh.setLevel(logging.DEBUG)
2464 # create console handler with a higher log level
2465 ch = logging.StreamHandler()
2466 ch.setLevel(logging.ERROR)
2467 # create formatter and add it to the handlers
2468 formatter = logging.Formatter("%(asctime)s - %(name)s - %(levelname)s - %(message)s")
2469 ch.setFormatter(formatter)
2470 fh.setFormatter(formatter)
2471 # add the handlers to logger
2472 logger.addHandler(ch)
2473 logger.addHandler(fh)
2474
2475 # "application" code
2476 logger.debug("debug message")
2477 logger.info("info message")
2478 logger.warn("warn message")
2479 logger.error("error message")
2480 logger.critical("critical message")
2481
2482Notice that the "application" code does not care about multiple handlers. All
2483that changed was the addition and configuration of a new handler named *fh*.
2484
2485The ability to create new handlers with higher- or lower-severity filters can be
2486very helpful when writing and testing an application. Instead of using many
2487``print`` statements for debugging, use ``logger.debug``: Unlike the print
2488statements, which you will have to delete or comment out later, the logger.debug
2489statements can remain intact in the source code and remain dormant until you
2490need them again. At that time, the only change that needs to happen is to
2491modify the severity level of the logger and/or handler to debug.
2492
2493
2494Using logging in multiple modules
2495^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
2496
2497It was mentioned above that multiple calls to
2498``logging.getLogger('someLogger')`` return a reference to the same logger
2499object. This is true not only within the same module, but also across modules
2500as long as it is in the same Python interpreter process. It is true for
2501references to the same object; additionally, application code can define and
2502configure a parent logger in one module and create (but not configure) a child
2503logger in a separate module, and all logger calls to the child will pass up to
2504the parent. Here is a main module::
2505
2506 import logging
2507 import auxiliary_module
2508
2509 # create logger with "spam_application"
2510 logger = logging.getLogger("spam_application")
2511 logger.setLevel(logging.DEBUG)
2512 # create file handler which logs even debug messages
2513 fh = logging.FileHandler("spam.log")
2514 fh.setLevel(logging.DEBUG)
2515 # create console handler with a higher log level
2516 ch = logging.StreamHandler()
2517 ch.setLevel(logging.ERROR)
2518 # create formatter and add it to the handlers
2519 formatter = logging.Formatter("%(asctime)s - %(name)s - %(levelname)s - %(message)s")
2520 fh.setFormatter(formatter)
2521 ch.setFormatter(formatter)
2522 # add the handlers to the logger
2523 logger.addHandler(fh)
2524 logger.addHandler(ch)
2525
2526 logger.info("creating an instance of auxiliary_module.Auxiliary")
2527 a = auxiliary_module.Auxiliary()
2528 logger.info("created an instance of auxiliary_module.Auxiliary")
2529 logger.info("calling auxiliary_module.Auxiliary.do_something")
2530 a.do_something()
2531 logger.info("finished auxiliary_module.Auxiliary.do_something")
2532 logger.info("calling auxiliary_module.some_function()")
2533 auxiliary_module.some_function()
2534 logger.info("done with auxiliary_module.some_function()")
2535
2536Here is the auxiliary module::
2537
2538 import logging
2539
2540 # create logger
2541 module_logger = logging.getLogger("spam_application.auxiliary")
2542
2543 class Auxiliary:
2544 def __init__(self):
2545 self.logger = logging.getLogger("spam_application.auxiliary.Auxiliary")
2546 self.logger.info("creating an instance of Auxiliary")
2547 def do_something(self):
2548 self.logger.info("doing something")
2549 a = 1 + 1
2550 self.logger.info("done doing something")
2551
2552 def some_function():
2553 module_logger.info("received a call to \"some_function\"")
2554
2555The output looks like this::
2556
Christian Heimes043d6f62008-01-07 17:19:16 +00002557 2005-03-23 23:47:11,663 - spam_application - INFO -
Christian Heimes8b0facf2007-12-04 19:30:01 +00002558 creating an instance of auxiliary_module.Auxiliary
Christian Heimes043d6f62008-01-07 17:19:16 +00002559 2005-03-23 23:47:11,665 - spam_application.auxiliary.Auxiliary - INFO -
Christian Heimes8b0facf2007-12-04 19:30:01 +00002560 creating an instance of Auxiliary
Christian Heimes043d6f62008-01-07 17:19:16 +00002561 2005-03-23 23:47:11,665 - spam_application - INFO -
Christian Heimes8b0facf2007-12-04 19:30:01 +00002562 created an instance of auxiliary_module.Auxiliary
Christian Heimes043d6f62008-01-07 17:19:16 +00002563 2005-03-23 23:47:11,668 - spam_application - INFO -
Christian Heimes8b0facf2007-12-04 19:30:01 +00002564 calling auxiliary_module.Auxiliary.do_something
Christian Heimes043d6f62008-01-07 17:19:16 +00002565 2005-03-23 23:47:11,668 - spam_application.auxiliary.Auxiliary - INFO -
Christian Heimes8b0facf2007-12-04 19:30:01 +00002566 doing something
Christian Heimes043d6f62008-01-07 17:19:16 +00002567 2005-03-23 23:47:11,669 - spam_application.auxiliary.Auxiliary - INFO -
Christian Heimes8b0facf2007-12-04 19:30:01 +00002568 done doing something
Christian Heimes043d6f62008-01-07 17:19:16 +00002569 2005-03-23 23:47:11,670 - spam_application - INFO -
Christian Heimes8b0facf2007-12-04 19:30:01 +00002570 finished auxiliary_module.Auxiliary.do_something
Christian Heimes043d6f62008-01-07 17:19:16 +00002571 2005-03-23 23:47:11,671 - spam_application - INFO -
Christian Heimes8b0facf2007-12-04 19:30:01 +00002572 calling auxiliary_module.some_function()
Christian Heimes043d6f62008-01-07 17:19:16 +00002573 2005-03-23 23:47:11,672 - spam_application.auxiliary - INFO -
Christian Heimes8b0facf2007-12-04 19:30:01 +00002574 received a call to "some_function"
Christian Heimes043d6f62008-01-07 17:19:16 +00002575 2005-03-23 23:47:11,673 - spam_application - INFO -
Christian Heimes8b0facf2007-12-04 19:30:01 +00002576 done with auxiliary_module.some_function()
2577