How to Install and Uninstall python3-logging-tree.noarch Package on CentOS Stream 8

Last updated: April 28,2024

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

This is a short guide on how to install python3-logging-tree.noarch on CentOS Stream 8

$ 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 CentOS Stream 8:

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

3. Information about the python3-logging-tree.noarch package on CentOS Stream 8

Last metadata expiration check: 0:05:57 ago on Sun Feb 25 03:03:59 2024.
Available Packages
Name : python3-logging-tree
Version : 1.8.1
Release : 1.el8
Architecture : noarch
Size : 28 k
Source : python-logging-tree-1.8.1-1.el8.src.rpm
Repository : epel
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"