Skip to main content

Use brace-style string formatting in log messages

Project description

bracelogger

Status Version Python

A Python library that enables using the brace-style string formatting in log messages.

Features:

  • Supports a wide range of Python versions (v2.7+)
  • No dependencies
  • Easy to use - no special syntax required
  • Easy to transition to from stdlib logging - just change the logging.getLogger calls and message templates.
  • Only enables brace-style formatting for loggers created by the library. This allows for gradually transitioning to brace-style formatting without breaking existing loggers or third party packages.
  • The formatting of the message is delayed until it is output (or not at all if the log message is filtered).
  • The args passed into the log call are stored on the logging.LogRecord objects as usual.

Installation

pip install bracelogger

Usage example

# import the library
from bracelogger import get_logger

# set up the logger
__log__ = get_logger(__name__)

# use brace-style formatting in log messages
try:
    process(some_obj)
except Exception:
    __log__.warning(
        "Failed to process object '{0!r}' with name '{0.name}' and path '{0.path}'",
        some_obj,
        exc_info=True
    )

Note that the above example is very basic. The real power of this module comes from being able to use the more advanced operations that the brace-style formatting can provide. See the docs on the format string syntax for more details.

Key-based formatting

The logger from the standard library has a special case (introduced in Python 2.4) where key-based formatting can be used when a single non-empty dictionary is passed into the log message like so:

__log__.info("a:%(a)s, b:%(b)s", {"a": 1, "b": 2})

This is also supported when using brace-style formatting:

# These both produce the same log message:
__log__.info("a:{a}, b:{b}", {"a": 1, "b": 2})
__log__.info("a:{0[a]}, b:{0[b]}", {"a": 1, "b": 2})

Compatibility with existing code and loggers

This library will only enable brace-style formatting for loggers created by this module's get_logger() function. Loggers created via the stdlib logging.getLogger() function will still use the normal %-based formatting.

This opt-in style means that codebases can gradually transition to brace-style logging without having to convert everything over all at once. It also means that the logs from any third-party code like libraries will continue to work as normal.

In addition to being compatible with existing code, it should also be compatible with most other stdlib-compatible logging packages and modifications. As when using the stdlib logger, the message arguments are still stored on the log record and the message is only formatted when it is handled (and not at all if the message is filtered).

Converting existing code

Because there is no special syntax required, migrating existing logs to brace-style formatting is easy:

  1. Change loggers created with logging.getLogger(name) to use bracelogger.get_logger(name)
  2. Change the log messages for the loggers to use brace-style formatting (ex: change %s to {})

Tests

This package contains basic tests. To run them, install pytest (pip install pytest) and run py.test in the project directory.

License

Licensed under the GNU LGPLv3.

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

bracelogger-1.1.3.tar.gz (3.3 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

bracelogger-1.1.3-py2.py3-none-any.whl (3.6 kB view details)

Uploaded Python 2Python 3

File details

Details for the file bracelogger-1.1.3.tar.gz.

File metadata

  • Download URL: bracelogger-1.1.3.tar.gz
  • Upload date:
  • Size: 3.3 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.14.3

File hashes

Hashes for bracelogger-1.1.3.tar.gz
Algorithm Hash digest
SHA256 a84afffebc93868e332c5bcdf69ccf14739af1bbf798d17b4d30fe055d2d6cd4
MD5 c566d32785a0042941508099870baf73
BLAKE2b-256 0215a5a9f2c99d7e754dad65d83e5d95ef092b2a3867724aaf9c07ee403ec051

See more details on using hashes here.

File details

Details for the file bracelogger-1.1.3-py2.py3-none-any.whl.

File metadata

  • Download URL: bracelogger-1.1.3-py2.py3-none-any.whl
  • Upload date:
  • Size: 3.6 kB
  • Tags: Python 2, Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.14.3

File hashes

Hashes for bracelogger-1.1.3-py2.py3-none-any.whl
Algorithm Hash digest
SHA256 c7b444560e0d9291911bde9fc6769dd3a65e3f5c31b0652127368b79e33c7519
MD5 a23cb0e4438be1594700aa4aeff5a223
BLAKE2b-256 06866c668d5a330744b60eb2abb9daf96bda3ba41c57355c02a018f1be47d0f9

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page