Skip to main content

A colorful logger for python3.

Project description

python-logger

Colorful logger for python3

How to use

Install

pip install colorful-logger

Usage

You can directly use the default logger, the colored logs will be printed on the terminal, and the default logger level is warning.

from colorful_logger.logger import logger

logger.warning("This is a warning message.")

You can also change the log level, save the log to a file, change the logger name, and the log may not be output to the terminal.

import logging
from colorful_logger.logger import get_logger

logger = get_logger(name="logger", level=logging.INFO, show=False, file_path="./test.log")

logger.info("This is a info message.")
logger.warning("This is a warning message.")
logger.error("This is a error message.")
logger.fatal("This is a fatal message.")

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distributions

No source distribution files available for this release.See tutorial on generating distribution archives.

Built Distribution

colorful_logger-0.0.1-py3-none-any.whl (4.8 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page