Skip to main content

Simple logger for Python

Project description

DavesLogger

A simple but in depth logger for Python, Customize by Composition.

The idea for this tool is composing logging functions, so you can make the logs look exactly how you want or need them to.

Usage

You just import the package, and call log.

from DavesLogger import Log

Log ('Hello, World!') ()

# This would print:
# Hello, World!

That's not interesting, lets compose a simple prefix in front of the message.

from DavesLogger import Log

Prefixed = Log ().Prefix ('[DEBUG] ')

Prefixed ('Hello World, Debug Edition')

# This would print:
# [DEBUG] Hello World, Debug Edition

You can also chain the logging modifiers

from DavesLogger import Log

Prefixed = Log ().Prefix ('[DEBUG] ').Suffix (' [SUFFIX])

Prefixed ('Hello World, Debug Edition')

# This would print:
# [DEBUG] Hello World, Debug Edition [SUFFIX]

There are also a bunch of built in formatters, and colors. Colors are based on the colorama module, so you can use their api of chaining properties.

from DavesLogger import Log, Color

Prefixed = Log ().Prefix (Color.LightRed + '[DEBUG] ').Suffix (Color.LightGreen + ' [SUFFIX])

Prefixed (Color.Blue + 'Hello World, Debug Edition')

# This would print:
# [DEBUG] Hello World, Debug Edition [SUFFIX]
# But colored ^^

Or you can call some premade logs

from DavesLogger import Logs

MyLog = Logs.Debug
MyLog ()

# This would print:
# [DEBUG] DEBUG MESSAGE
# But colored ^^

Colors

  • Reset
  • End (Same as Reset)
  • White
  • LightGray
  • Gray
  • Black
  • Red
  • LightRed
  • Blue
  • LightBlue
  • Green
  • LightGreen
  • Yellow
  • LightYellow
  • Purple
  • LightPurple
  • Cyan

Premade Logs

  • Debug :: [DEBUG] DEBUG MESSAGE >> The Prefix is LightPurple
  • Warning :: [WARNING] WARNING MESSAGE >> The Prefix is LightYellow
  • Error :: [ERROR] ERROR MESSAGE >> The Prefix is LightRed
  • Success :: [SUCCESS] SUCCESS MESSAGE >> The Prefix is LightGreen

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

DavesLogger-1.0.1.tar.gz (3.4 kB view hashes)

Uploaded Source

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