How to Install and Uninstall python3-logging-tree.noarch Package on Oracle Linux 8

Last updated: May 19,2024

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

This guide let you learn how to install python3-logging-tree.noarch on Oracle Linux 8

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

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

This is a short guide on how to uninstall python3-logging-tree.noarch on Oracle Linux 8:

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

3. Information about the python3-logging-tree.noarch package on Oracle Linux 8

Last metadata expiration check: 1:22:26 ago on Mon Sep 12 02:51:38 2022.
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"