Skip to main content

Pure python logging handler for writing logs to the journald using native protocol

Project description

Pure python logging handler for writing logs to the journald using native protocol.

import logging
from logging_journald import JournaldLogHandler, check_journal_stream

# Use python default handler
LOG_HANDLERS = None


if (
    # Check if program running as systemd service
    check_journal_stream() or
    # Check if journald socket is available
    JournaldLogHandler.SOCKET_PATH.exists()
):
    LOG_HANDLERS = [JournaldLogHandler()]

logging.basicConfig(level=logging.INFO, handlers=LOG_HANDLERS)
logging.info("Hello logging world.")

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-journald-0.6.2.tar.gz (4.0 kB view details)

Uploaded Source

File details

Details for the file logging-journald-0.6.2.tar.gz.

File metadata

  • Download URL: logging-journald-0.6.2.tar.gz
  • Upload date:
  • Size: 4.0 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/32.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.62.3 importlib-metadata/4.11.0 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.10.2

File hashes

Hashes for logging-journald-0.6.2.tar.gz
Algorithm Hash digest
SHA256 53a92a02f312c8b0db4e173ac0037fae2d2f9adfef0318051594fae42b1ba6cb
MD5 03b0fba64b0af132a6fbb147c54fad57
BLAKE2b-256 69cbc6622d0b2acd0d14f571b41cbd57fe66a28a18539ca3020493e307e9c727

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