2. Usage
2.1. Overview
This module provides Python bindings for the unified logging and tracing system of macOS.
It requires macOS 10.12 or higher.
Log objects on macOS are encapsulated in Python using class
macos_oslog.Log
.
The standard log objects of macOS are available in Python as follows:
OS_LOG_DEFAULT
: Log object that is enabled for all log levels.OS_LOG_DISABLED
: Log object that is disabled for all log levels.
Additional user-specific log objects can be created with
os_log_create()
. They should be released with
os_log_release()
.
Log objects can be tested for being enabled for a specific log level with
os_log_enabled()
.
The log levels supported by macOS are represented in Python as follows:
OS_LOG_TYPE_DEBUG
: Debug-level messages.OS_LOG_TYPE_INFO
: Info-level messages.OS_LOG_TYPE_DEFAULT
: Default/warning-level messages.OS_LOG_TYPE_ERROR
: Error-level messages.OS_LOG_TYPE_FAULT
: Fault-level messages.
The unified logging and tracing system of macOS provides a central place that has all log messages in memory buffers and that propagates log messages to a data store dependent on the persistence setting of the log object. These log levels have different settings as to whether they are put into the log and whether they are propagated to the data store. The ‘log’ command on macOS can be used to change the persistence setting of a macOS log object.
2.2. Log class
- class macos_oslog.Log
A macOS log object.
A
macos_oslog.Log
object encapsulates a macOS log object.A macOS log object has subsystem and category identifiers. These identifiers allow filtering and grouping of log messages when viewing the unified log in the macOS ‘Console’ app or with the ‘log’ command on macOS, and can be used for log related settings in the logging system.
Attributes:
category identifier of the macOS log object
opaque handle to the macOS log object
subsystem identifier of the macOS log object
- category
category identifier of the macOS log object
- log
opaque handle to the macOS log object
- subsystem
subsystem identifier of the macOS log object
2.4. Log levels
- macos_oslog.OS_LOG_TYPE_DEBUG: int = 2
Debug-level messages.
Use this level to capture information that may be useful during development or while troubleshooting a specific problem.
Debug-level messages are only captured in memory when debug logging is enabled through a configuration change. They are purged in accordance with the configuration’s persistence setting.
- macos_oslog.OS_LOG_TYPE_INFO: int = 1
Info-level messages.
Use this level to capture information that may be helpful, but isn’t essential, for troubleshooting errors.
Info-level messages are initially stored in memory buffers. Without a configuration change, they are not moved to the data store and are purged as memory buffers fill. They are, however, captured in the data store when faults and, optionally, errors occur. When info-level messages are added to the data store, they remain there until a storage quota is exceeded, at which point, the oldest messages are purged.
- macos_oslog.OS_LOG_TYPE_DEFAULT: int = 0
Default (=warning) level messages.
Use this level to capture information about things that might result in a failure. This makes them equivalent to warning-level messages.
Default-level messages are initially stored in memory buffers. Without a configuration change, they are compressed and moved to the data store as memory buffers fill. They remain there until a storage quota is exceeded, at which point, the oldest messages are purged.
- macos_oslog.OS_LOG_TYPE_ERROR: int = 16
Error-level messages.
Use this log level to report process-level errors.
Error-level messages are always saved in the data store. They remain there until a storage quota is exceeded, at which point, the oldest messages are purged. If an activity object exists, logging at this level captures information for the entire process chain.
- macos_oslog.OS_LOG_TYPE_FAULT: int = 17
Fault-level messages.
Use this level only to capture system-level or multi-process information when reporting system errors.
Fault-level messages are always saved in the data store. They remain there until a storage quota is exceeded, at which point, the oldest messages are purged. If an activity object exists, logging at this level captures information for the entire process chain.
2.5. Standard log objects
- macos_oslog.OS_LOG_DEFAULT: macos_oslog.Log
A standard log object that initially has all levels enabled.
- macos_oslog.OS_LOG_DISABLED: macos_oslog.Log
A standard log object that initially has all levels disabled.