Skip to main content

Helper for logging to files

Project description

fileloghelper

A simple helper for logging content to files (and displaying it)

Installation

pip3 install fileloghelper

Methods

  • set_context(context): specifies context which will be added to all outputs (file & terminal) in front
  • success(text, display=True): writes text to file and optionally with green indication in console (if display==True)
  • debug(text, display=True): writes text to file and optionally with blue indication in console (if display==True)
  • warning(text, display=True): writes text to file and optionally with yellow indication in console (if display==True)
  • error(text, display=True): writes text to file and optionally with red indication in console (if display==True)
  • plain(text, display=False, extra_long): write and optionally display text to file. extra_long specifies time format (12:34:56; 12:34:56:123456)
  • save(): save file under default/at declaration specified filename

Example

from fileloghelper import Logger

logger = Logger(filename='log.txt', context='MyLogger')

logger.debug('Hello World!', display=False)
logger.success('Successfull!', display=True)

logger.save()

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

fileloghelper-0.0.6.tar.gz (2.7 kB view hashes)

Uploaded Source

Built Distribution

fileloghelper-0.0.6-py3-none-any.whl (3.2 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