Skip to main content

A hierarchical and colourful logging module

Project description

Hierarchical Colored Logger Module for Python

HCLogger is a logging module using Termcolor and a hierarchical format to improve readability.

Note: this module was designed to deal with concurrency. However, it is encouraged to store thread logs into different log files.

HCLogger capture

Installation

pip install hclogger

Usage

As simple as it could be:

from HCLogger import Logger

logger = Logger(filename='fname.log', verbose=False)
logger.debug('This is a debug message.')

Output:

Debug output

The hierarchy is added to functions. In order to add hierarchy on of the following alternatives must be used:

# The manual call
logger.manual_log_func(func, args*)

# The decorated call
@logger.log_func
def func(args):
	...

func()

Output:

Function logging

Putting it all together:

Demo capture

Future work

  • Add to PyPi
  • Create web view

Project details


Download files

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

Source Distribution

hclogger-1.0.4.tar.gz (3.3 kB view hashes)

Uploaded Source

Built Distribution

hclogger-1.0.4-py3-none-any.whl (15.9 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