Skip to main content

helper for log initialization

Project description

baselog

baselog is a Python module intended to simplify and standardize logging in our Python applications, particularly Dockerized applications. It is simply a thin wrapper around the stdlib logging module.

Many of our codebases are containerized and have the following operational requirements:

  • Log messages get logged to the standard error (in agreement with the 12 factor design principles)
  • If a log_dir path is supplied, a new log file is also created in that directory for every run of the app
  • All uncaught exceptions are logged as described above
  • Standard timezone-aware formats for log messages and timestamps

Example

In the main file in an application, BaseLog is used to initialize both the console and file loggers.

#!/usr/bin/env python3
from baselog import BaseLog

from .util import otherfunc


logger = BaseLog(
    __package__,
    log_dir="/logs",
    console_log_level="DEBUG",
    file_log_level="DEBUG",
)

def main():
    logger.info("starting a thing")
    otherfunc()

if __name__ == '__main__':
    main()

In other files of the project you just import the standard python logging module and get a logger.

#!/usr/bin/env python3

import logging

logger = logging.getLogger(__name__)


def otherfunc():
    logger.warning("Log 'em'!")

A sys.excepthook is set by BaseLog, so in the case of an uncaught exception, the exception and traceback are logged to the console and log files:

2023-04-11T20:06:59+0000 - logdemo - INFO - starting a thing
2023-04-11T20:06:59+0000 - logdemo.util - WARNING - Things may be happening
2023-04-11T20:06:59+0000 - logdemo.other.funcs - INFO - Things aren't happening yet
2023-04-11T20:06:59+0000 - logdemo - CRITICAL - uncaught exception: RuntimeError; What the heck?!
2023-04-11T20:06:59+0000 - logdemo - CRITICAL - traceback-000: Traceback (most recent call last):
2023-04-11T20:06:59+0000 - logdemo - CRITICAL - traceback-001:   File "<frozen runpy>", line 198, in _run_module_as_main
2023-04-11T20:06:59+0000 - logdemo - CRITICAL - traceback-002:   File "<frozen runpy>", line 88, in _run_code
2023-04-11T20:06:59+0000 - logdemo - CRITICAL - traceback-003:   File "/app/logdemo/__main__.py", line 21, in <module>
2023-04-11T20:06:59+0000 - logdemo - CRITICAL - traceback-004:     main()
2023-04-11T20:06:59+0000 - logdemo - CRITICAL - traceback-005:   File "/app/logdemo/__main__.py", line 17, in main
2023-04-11T20:06:59+0000 - logdemo - CRITICAL - traceback-006:     whatsit()
2023-04-11T20:06:59+0000 - logdemo - CRITICAL - traceback-007:   File "/app/logdemo/other/funcs.py", line 10, in whatsit
2023-04-11T20:06:59+0000 - logdemo - CRITICAL - traceback-008:     raise RuntimeError("What the heck?!")
2023-04-11T20:06:59+0000 - logdemo - CRITICAL - traceback-009: RuntimeError: What the heck?!

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

baselog-2.1.0.tar.gz (13.9 kB view details)

Uploaded Source

Built Distribution

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

baselog-2.1.0-py3-none-any.whl (14.2 kB view details)

Uploaded Python 3

File details

Details for the file baselog-2.1.0.tar.gz.

File metadata

  • Download URL: baselog-2.1.0.tar.gz
  • Upload date:
  • Size: 13.9 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.0.1 CPython/3.12.8

File hashes

Hashes for baselog-2.1.0.tar.gz
Algorithm Hash digest
SHA256 91dead310eaaf04c3b8716c88ef00dba0eb008f8c317b4f6a3b70e98b2a6b8eb
MD5 c32a0237d216fa69d260e2cd6e9baf67
BLAKE2b-256 0805377d728c0a1abd1d985c5fdc784bac1dad74c3020968d69cbd6b86a07093

See more details on using hashes here.

File details

Details for the file baselog-2.1.0-py3-none-any.whl.

File metadata

  • Download URL: baselog-2.1.0-py3-none-any.whl
  • Upload date:
  • Size: 14.2 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.0.1 CPython/3.12.8

File hashes

Hashes for baselog-2.1.0-py3-none-any.whl
Algorithm Hash digest
SHA256 347f0784a859c81f6e354c31514f25391147e68cc0d09c37ecfa86220d923ee6
MD5 b6f08e391f1ddfc25ca84be406b69379
BLAKE2b-256 8d7282fa99f645110ec0c91d98b6477027e93f8afa1c9823cdbbc9c3b90d48d5

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