procamora / python3-logging

Library to run the logging library with colors according to the type of log.

Home Page:https://pypi.org/project/procamora-logging/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

python3-logging

Library to run the logging library with colors according to the type of log.

Installation

Installation can be done through the pip3 command:

pip3 install procamora-logging --user

You can also update the library with:

python3 -m pip install --user --upgrade procamora-logging

Basic Usage

To use this class the first thing to do is import the library:

from procamora_logging.logging import get_logging
logger: logging = get_logging(verbose=False, name='sqlite')

logger.debug(msg)
logger.info(msg)
logger.warning(msg)
logger.error(msg)
logger.critical(msg)

About

Library to run the logging library with colors according to the type of log.

https://pypi.org/project/procamora-logging/

License:GNU General Public License v3.0


Languages

Language:Python 84.2%Language:Makefile 15.8%