Skip to main content

Loghandler

Project description

Logging Module

This library can handle colored log-output and write directly into a logfile.

Init

#!/usr/bin/env python3

from logbuddy import logbuddy

log = logbuddy.log()

Loglevel

At the moment there are a few loglevels defined by default.

  • Info
  • Warning
  • Error
  • Pass
  • Debug
log.Pass("I am a pass-message")
log.Warn("I am a warning-message")
log.Error("I am an error-message")
log.Debug("I am a debug-message")
log.Info("I am an info-message")

Change the color of the levels

log.Info("I am an info-message")

log.setInfo("\x1b[1;36m")

log.Info("And now I have a different color")

If you don't like colors

log.setColor(False)

Need a logfile?

log.setLogfile("somelogfile")

Need a logfile with date?

log.setLogfile("somelogfile")
log.setLogfileDate(True)

Future Plans

  • Creating your own loglevels

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

logbuddy-0.0.1.7.tar.gz (2.2 kB view hashes)

Uploaded Source

Built Distribution

logbuddy-0.0.1.7-py3-none-any.whl (2.6 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