Skip to main content

Provide several commonly used logger.

Project description

Documentation Status https://github.com/MacHu-GWU/loggerFactory-project/workflows/CI/badge.svg https://codecov.io/gh/MacHu-GWU/loggerFactory-project/branch/master/graph/badge.svg https://img.shields.io/pypi/v/loggerFactory.svg https://img.shields.io/pypi/l/loggerFactory.svg https://img.shields.io/pypi/pyversions/loggerFactory.svg https://img.shields.io/badge/STAR_Me_on_GitHub!--None.svg?style=social
https://img.shields.io/badge/Link-Document-blue.svg https://img.shields.io/badge/Link-API-blue.svg https://img.shields.io/badge/Link-Source_Code-blue.svg https://img.shields.io/badge/Link-Install-blue.svg https://img.shields.io/badge/Link-GitHub-blue.svg https://img.shields.io/badge/Link-Submit_Issue-blue.svg https://img.shields.io/badge/Link-Request_Feature-blue.svg https://img.shields.io/badge/Link-Download-blue.svg

Welcome to loggerFactory Documentation

Construct Stream Handler and File Handler is so boring. loggerFactory include some commonly used logger out-of-the-box. You can create a super easy to use logger in minimal code.

Example:

import loggerFactory

# log to console
logger = loggerFactory.StreamOnlyLogger(rand_name=True)
logger.warning("Some thing wrong!")

# log to file
# if name is not specified, a random name will be assigned
logger = loggerFactory.SingleFileLogger(path="log.txt")
logger.error("Fatal Error!")

# file rotating
logger = loggerFactory.FileRotatingLogger(path="log.txt")

# time rotating
logger = loggerFactory.TimeRotatingLogger(path="log.txt")

Use color and indent to format your print:

import loggerFactory

logger = loggerFactory.BaseLogger()
logger.show_in_red("Hello", indent=0)
logger.show_in_blue("Hello", indent=1)
logger.show_in_yellow("Hello", indent=2)
logger.show_in_green("Hello", indent=3)
logger.show_in_cyan("Hello", indent=4)
logger.show_in_meganta("Hello", indent=5)
https://user-images.githubusercontent.com/6800411/53650419-7ca86780-3c12-11e9-99c7-bf7baccb3fc4.png

If you are using default log format %(asctime)s; %(levelname)-8s; %(message)s, a logfilter can help you search log info.

Example:

from loggerFactory import find

result = find("log.txt",
    level="debug", message="ValueError",
    time_lower=None, time_upper=None,
    case_sensitive=False,
)
result.dump("result.txt")
print(result)

Install

loggerFactory is released on PyPI, so all you need is:

$ pip install loggerFactory

To upgrade to latest version:

$ pip install --upgrade loggerFactory

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

loggerFactory-0.0.6.tar.gz (16.2 kB view hashes)

Uploaded Source

Built Distribution

loggerFactory-0.0.6-py2.py3-none-any.whl (16.7 kB view hashes)

Uploaded Python 2 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