Skip to main content

Logging convenience routines.

Project description

Logging convenience routines.

The logging package is very useful, but a little painful to use. This package provides low impact logging setup and some extremely useful if unconventional context hooks for logging.

The logging verbosity output format has different defaults based on whether an output log file is a tty and whether the environment variable $DEBUG is set, and to what.

Some examples:

Program initialisation:

from cs.logutils import setup_logging

def main(argv):
  cmd = os.path.basename(argv.pop(0))
  setup_logging(cmd)

Basic logging from anywhere:

from cs.logutils import info, warning, error
[...]
def some_function(...):
  [...]
  error("nastiness found! bad value=%r", bad_value)

Context for log messages and exception strings:

from cs.logutils import Pfx
[...]
def func1(foo):
  [...]
  with Pfx("func1(%s)", foo.name):
    [...]
    warning("badness!")   # emits "func1(fooname): badness!"
[...]
def loadfile(filename):
  with Pfx(filename):
    lineno = 0
    for line in open(filename):
      lineno += 1
      with Pfx("%d", lineno):
        [...]
        bah = something from the line ...
        func1(bah)        # emits "filename: lineno: func1(fooname): badness!"
                          # if the warning triggers

This keeps log lines short and provides context in reported errors.

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

cs.logutils-20160828.tar.gz (10.0 kB view details)

Uploaded Source

File details

Details for the file cs.logutils-20160828.tar.gz.

File metadata

File hashes

Hashes for cs.logutils-20160828.tar.gz
Algorithm Hash digest
SHA256 7058295d0e4b554954b4b3ab3ca1ae8235f9d49eb047063e5344c3677af8e873
MD5 0e8f1897f8c0c95536e7402fd2fa40e7
BLAKE2b-256 766487ffab23537ec0683b5fcc7a9c830ae53a2a6e497c85cbb33a3c433786e3

See more details on using hashes here.

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