Lines Matching refs:loggers
41 * Handlers send the log records (created by loggers) to the appropriate
60 Loggers that are further down in the hierarchical list are children of loggers
62 loggers with names of ``foo.bar``, ``foo.bar.baz``, and ``foo.bam`` are all
64 package hierarchy, and identical to it if you organise your loggers on a
75 passed to the handlers of higher level (ancestor) loggers, in addition to
77 ancestor loggers' handlers - neither the level nor filters of the ancestor
78 loggers in question are considered.
81 of ancestor loggers.
89 hierarchy, then it will see all events logged by all descendant loggers,
107 NOTSET, its chain of ancestor loggers is traversed until either an ancestor with
635 initialized with 'A.B' will allow events logged by loggers 'A.B', 'A.B.C',
654 emitted by the handler, whereas filters attached to loggers are consulted
657 been generated by descendant loggers will not be filtered by a logger's filter
658 setting, unless the filter has also been applied to those descendant loggers.
1075 Provides an overriding level *level* for all loggers which takes precedence over
1084 levels of individual loggers.
1253 function is typically called before any loggers are instantiated by applications
1255 time, do not instantiate loggers directly using the subclass: continue to use
1256 the :func:`logging.getLogger` API to get your loggers.