[ol8_developer_EPEL] python3-logging-tree-1.8.1-1.el8.noarch

Name:python3-logging-tree
Version:1.8.1
Release:1.el8
Architecture:noarch
Group:Unspecified
Size:52403
License:BSD
RPM: python3-logging-tree-1.8.1-1.el8.noarch.rpm
Source RPM: python-logging-tree-1.8.1-1.el8.src.rpm
Build Date:Fri Sep 18 2020
Build Host:jenkins-172-17-0-2-11fd70d9-f8d8-4d1e-9560-ba8e5bd65303.appad2iad.osdevelopmeniad.oraclevcn.com
Vendor:Oracle America
URL:https://github.com/brandon-rhodes/logging_tree
Summary:Introspect and display the logger tree inside "logging"
Description:
Introspection for the ``logging`` logger tree in the Standard Library.

While you can write programs that call this package's ``tree()``
function and examine the hierarchy of logger objects that it finds
inside of the Standard Library ``logging`` module, the simplest use of
this package for debugging is to call ``printout()`` to print the
loggers, filters, and handlers that your application has configured::

    >>> logging.getLogger('a')
    >>> logging.getLogger('a.b').setLevel(logging.DEBUG)
    >>> logging.getLogger('x.c')
    >>> from logging_tree import printout
    >>> printout()
       ""
       Level WARNING
       |
       o<--"a"
       |   |
       |   o<--"a.b"
       |       Level DEBUG
       |
       o<--[x]
           |
           o<--"x.c"

Changelog (Show File list) (Show related packages)