Skip to main content

Self-logging exceptions: Attach log messages to exceptions and output them conditionally.

Project description

Installation

Use setup.py :

python setup.py install

Warning

This module modifies sys.excepthook when it is imported!

Usage

Self-logging exceptions

Attach a log message to an exception:

import logging
import logging_exceptions as exlog

e = ValueError("Wrong value")
logger = logging.getLogger(__name__)
with exlog.log_to_exception(logger, e):
    logger.critical("This is a %s log mressage", "long")
raise e # The exception can also be raised inside the with statement

If the error is not caught, the log message will be displayed upon program termination.

Catch the error and display the log message at a costum log-level:

import logging_exceptions as exlog
import logging
try:
    e = ValueError("Wrong value")
    logger = logging.getLogger(__name__)
    with exlog.log_to_exception(logger, e):
        logger.critical("This is a %s log mressage", "long")
        raise e
except ValueError as err:
    exlog.log(err, level=logging.DEBUG)

Commandline convenience functions

The following convenience functions are not directly related to exceptions, but useful if you use argparse.

Add the ‘–verbose’, ‘–debug’ and ‘–quiet’ options to an argparse.Argumentparser instance.

import argparse
import logging_exceptions as exlog

parser=argparse.ArgumentParser("Some help text")
exlog.update_parser(parser)
args = parser.parse_args()

logging.basicConfig()
# The following call updates the log levels of the root logger
# and potential some other loggers.
exlog.config_from_args(args)

Now the script can be used from the commandline like this:

# Set the log-level for the loggers with the names `path.to.module1`
# and `path.to.module2` to DEBUG.
python script.py --debug path.to.module1,path.to.module2

Examples

See the file ‘logging_exceptions_examples.py’

Comparison to logging.handlers.MemoryHandler

The logging.handlers module contains a handler for a similar purpose: The MemoryHandler. It buffers log messages and only emits them, if a log record of severity error or above is encountered. I will quickly explain the differences between MemoryHandler and my module:

MemoryHandler is great if you know that an event of severity ERROR may occur in the future (typically in the same function) and you want to prepare for this potential exception. Typically, you know the scope for which the exceptions have to be buffered and you know when the buffered exceptions are no longer needed and can be discarded.

While for MemoryHandler the error condition is rather unspecific, the scope in which we have to decide between discarding and emitting the log messages is well known.

The log_to_exception decorator, on the other hand, is useful if the exception is well specified (it is already created/ caught), but the the scope in which the exception may or may not be caught is unspecified. Examples would be library functions that raise an error.

A typical example would be the following:

import logging
from logging_exceptions import log_to_exception

# Whoever calls public_function may want to catch the ValueError and hide
# the log messages or change their level to logging.DEBUG
def public_function():
    logger = logging.getLogger(__name__)
    a = some_complex_calculation(12)
    try:
        some_function(a)
    except ValueError as e:
        with log_to_exception(logger, e):
            log.error("While calling `some_function` with %s, "
                      "which is result of `some_complex_calculation`(%d),"
                      " an error occurred", a, 12)
        raise

Compatibility

Compatible with python 2.7 and python 3

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

logging_exceptions-0.1.4.tar.gz (5.3 kB view details)

Uploaded Source

Built Distribution

logging_exceptions-0.1.4-py2.py3-none-any.whl (7.9 kB view details)

Uploaded Python 2 Python 3

File details

Details for the file logging_exceptions-0.1.4.tar.gz.

File metadata

File hashes

Hashes for logging_exceptions-0.1.4.tar.gz
Algorithm Hash digest
SHA256 352b8beecdf4358ea5f2ee3dc6dfdf99a24a7a366d84f0d8812ebcd9fa3d1262
MD5 7eb5ac02c4bbcc6e9fe0aba1b2348120
BLAKE2b-256 4b2a1de1c7bd87126ffddaf01221650521ffd0aef5c39e5e1ae08126f0a4710b

See more details on using hashes here.

File details

Details for the file logging_exceptions-0.1.4-py2.py3-none-any.whl.

File metadata

File hashes

Hashes for logging_exceptions-0.1.4-py2.py3-none-any.whl
Algorithm Hash digest
SHA256 4254b82b5ee13e8dc12caeb9eea9391f321b98daf6650911cd52ed8b575fa420
MD5 8786cbde11ce60a634e6a1760b8768f8
BLAKE2b-256 fddbf67ea893b76ce3508f61eb4c456c7bc77f94a7cdc197d5ee53f5f4df9499

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