diff options
Diffstat (limited to 'Doc/library/logging.rst')
-rw-r--r-- | Doc/library/logging.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/logging.rst b/Doc/library/logging.rst index 9023738..ed0294b 100644 --- a/Doc/library/logging.rst +++ b/Doc/library/logging.rst @@ -3057,7 +3057,7 @@ Currently, the useful mapping keys in a :class:`LogRecord` are: Filter Objects -------------- -``Filters` can be used by ``Handlers`` and ``Loggers`` for more sophisticated +``Filters`` can be used by ``Handlers`` and ``Loggers`` for more sophisticated filtering than is provided by levels. The base filter class only allows events which are below a certain point in the logger hierarchy. For example, a filter initialized with "A.B" will allow events logged by loggers "A.B", "A.B.C", |