How to Install and Uninstall python3-logging-tree.noarch Package on Fedora 38

Last updated: May 20,2024

1. Install "python3-logging-tree.noarch" package

Please follow the steps below to install python3-logging-tree.noarch on Fedora 38

$ sudo dnf update $ sudo dnf install python3-logging-tree.noarch

2. Uninstall "python3-logging-tree.noarch" package

Please follow the steps below to uninstall python3-logging-tree.noarch on Fedora 38:

$ sudo dnf remove python3-logging-tree.noarch $ sudo dnf autoremove

3. Information about the python3-logging-tree.noarch package on Fedora 38

Last metadata expiration check: 2:13:14 ago on Sun Mar 17 04:59:58 2024.
Available Packages
Name : python3-logging-tree
Version : 1.9
Release : 7.fc38
Architecture : noarch
Size : 34 k
Source : python-logging-tree-1.9-7.fc38.src.rpm
Repository : fedora
Summary : Introspect and display the logger tree inside "logging"
URL : https://github.com/brandon-rhodes/logging_tree
License : BSD
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"