Skip to main content

Send messages to the macOS unified logging system

Project description

Pyoslog

Pyoslog is a simple extension to send messages to the macOS unified logging system from Python.

from pyoslog import os_log, OS_LOG_DEFAULT
os_log(OS_LOG_DEFAULT, 'Hello from Python!')

Installation

python -m pip install pyoslog

Pyoslog requires macOS 10.12 or later.

Usage

Pyoslog currently provides the methods os_log_create, os_log_with_type and os_log, each with the same signatures as their native versions.

The module also offers a helper method – log – that by default posts a message of type OS_LOG_TYPE_DEFAULT to OS_LOG_DEFAULT. For example, the shortcut log('message') is equivalent to os_log_with_type(OS_LOG_DEFAULT, OS_LOG_TYPE_DEFAULT, 'message').

The Handler class is designed for use with Python's inbuilt logging module.

Labelling subsystem and category

Create a log object using os_log_create and pass it to any of the log methods to add your own subsystem and category labels:

import pyoslog
log = pyoslog.os_log_create('ac.robinson.pyoslog', 'custom-category')
pyoslog.os_log_with_type(log, pyoslog.OS_LOG_TYPE_DEBUG, 'Message to log object', log, 'of type', pyoslog.OS_LOG_TYPE_DEBUG)

Integration with the logging module

Use the pyoslog Handler to direct messages to pyoslog:

import logging, pyoslog
logger = logging.getLogger('My app name')
logger.setLevel(logging.DEBUG)
handler = pyoslog.Handler()
handler.setSubsystem('org.example.your-app', 'filter-category')
logger.addHandler(handler)
logger.debug('message')

Receiving log messages

Logs can be viewed using Console.app or the log command. For example, messages sent using the default configuration can be monitored using:

log stream --predicate 'processImagePath CONTAINS "Python"'

Messages sent using custom configurations can be filtered more precisely. For example, to receive messages from the labelled subsystem used in the example above:

log stream --predicate 'subsystem == "ac.robinson.pyoslog"' --level=debug

See man log for further details about the available options and filters.

Alternatives

At the time this module was created there were no alternatives available on PyPi. There are, however, other options available if this is not seen as a constraint:

Note that the pyobjc module OSLog is for reading from the unified logging system rather than writing to it. A log.h binding is on that project's roadmap, but not yet implemented.

License

Apache 2.0

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

pyoslog-0.2.0.tar.gz (8.9 kB view hashes)

Uploaded Source

Built Distribution

pyoslog-0.2.0-cp39-cp39-macosx_10_12_x86_64.whl (12.5 kB view hashes)

Uploaded CPython 3.9 macOS 10.12+ x86-64

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