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

Last updated: January 15,2025

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

Please follow the instructions below to install python3-logging-tree.noarch on Fedora 35

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

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

Please follow the guidelines below to uninstall python3-logging-tree.noarch on Fedora 35:

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

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

Last metadata expiration check: 2:35:37 ago on Wed Sep 7 08:25:01 2022.
Available Packages
Name : python3-logging-tree
Version : 1.9
Release : 3.fc35
Architecture : noarch
Size : 26 k
Source : python-logging-tree-1.9-3.fc35.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"