Configure logging with reduced noise from spammy modules with easy argparse support
Project description
loggery
Easy and standardized logging for Python
Log Format
This package configures logging with the following format:
"{asctime} [{levelname}] {name} - {message}"
- asctime - Log message timestamp consisting of date and time (with ms) separated by a space
- levelname - Log level of the message
- name - Logger name
- message - Body of the log message
This produces log messages such as this:
2022-04-29 10:38:52,315 [INFO] pyspam-app - Slicing 27 cans of spam into 6 slices each for a total of 162 slices.
Basic Usage
For command line tools, after creating your parser with argparse, pass it to add_logging_args(). Then, after parsing
arguments but before any logging, call configure_logging_from_args(args.verbose, args.quiet, args.log_stdout):
import argparse
import loggery
parser = argparse.ArgumentParser()
... build your parser ...
loggery.add_logging_args(parser)
args = parser.parse_args()
loggery.configure_logging_from_args(args.verbose, args.quiet, args.log_stdout)
This will set logging levels as requested by the command line options, with known external modules that would otherwise
flood the logs to be set slightly less verbose. The specific list is in loggery.SPAMMY_LOGGERS and can be
edited before calling any configure logging function.
The default log levels in loggery.DEFAULT_LOG_LEVEL and loggery.DEFAULT_SPAMMY_LOG_LEVEL can also be modified, if
desired. These do not support custom logging levels, however.
You may also pass a logger_name as a fourth argument to configure_logging_from_args() if you don't want to use the root
logger. However, if your code is the main execution thread, you should generally configure the root logger so that all output
uses the same log format.
Finally, you can also call configure_logging() with specific log levels directly if needed.
Once configured, each module or scripts should generate log messages with the default logger for their name:
import logging
LOG = logging.getLogger(__name__)
Then just write to the log using that logger:
LOG.debug('This is a debug level log message.')
LOG.info('This is an info level log message.')
LOG.warning('This is a warning level log message.')
LOG.error('This is an error level log message.')
LOG.critical('This is a critical level log message.')
Design Overview
The core assumptions are that logging should be easy to setup with reasonable defaults, configurable with command line options at runtime, and allow fine control over the volume of information output.
To support this last point, there are modules that are commonly used and provide useful log information, but are also verbose when set to more detailed log levels despite usually not being the log messages you are interested in. The requests module is a great example of this. Debug level logs are verbose and produce tons of information, but the code itself is rarely the source of issues. Setting a general log level of debug means seeing both the debug messages of the problematic code and modules like requests, which just adds more messages to wade through that aren't helpful.
Because of this, loggery has a list of loggers which are known to be both reliable and noisy. When requesting more verbose log information, these "spammy" loggers trail behind the general log level by two steps. This causes more relevant logs to be displayed without the spammy logger information unless even more verbosity is requested.
In practice, with the default settings, it results in the following level of log output per verbose flag given:
| Verbosity | General Log Level | Spammy Logger Level |
|---|---|---|
| (none) | WARNING | WARNING |
-v |
INFO | WARNING |
-vv |
DEBUG | WARNING |
-vvv |
DEBUG | INFO |
-vvvv |
DEBUG | DEBUG |
Configuration
The default log levels in loggery.DEFAULT_LOG_LEVEL and loggery.DEFAULT_SPAMMY_LOG_LEVEL are set to
WARNING and can be modified, if desired. Custom logging levels, however, are not supported.
The set of loggers considered spammy is an iterable in loggery.SPAMMY_LOGGERS and can also be modified or replaced.
Finally, while not recommended, the log format can be modified by changing the value in loggery._LOG_FORMAT. This
uses the curly brace style formatting. Note this specific attribute is internal may undergo breaking changes in the future.
The default format is: "{asctime} [{levelname}] {name} - {message}"
All configuration changes should be made before calling any configuration functions.
Function Overview
For full details please see the source code and function documentation strings.
add_logging_args(parser: argparse.ArgumentParser)
Adds the --verbose, --quiet, and --log-stdout options to the given argument parser. These arguments are used by
configure_logging_from_args().
configure_logging_from_args(verbose: int = 0, quiet: int = 0, log_stdout: bool = False, logger_name: str = None)
Configures the specified logger, typically the root logger, from the given number of verbose and quiet flags, and, when increaing verbosity, sets the log level for known spammy loggers to trail behind by two log levels.
configure_logging(log_level: int = None, spammy_log_level: int = None, log_stdout: bool = False, logger_name: str = None)
For the given logger, typically the root logger, overwrites the existing configuration to use the specified level and
standard format. Also sets the spammy loggers to their specified level. This function is used by
configure_logging_from_args() and can alternately be called directly if needed.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file loggery-0.3.2.tar.gz.
File metadata
- Download URL: loggery-0.3.2.tar.gz
- Upload date:
- Size: 7.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/2.1.3 CPython/3.13.3 Darwin/24.4.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c49c1790f6f94e316b2f3bd860afb7e5970738c2b8e2846cfbc9da953e373167
|
|
| MD5 |
447bde75620774b44dd0eae5aac7d5f3
|
|
| BLAKE2b-256 |
1fb4534ed7d58f56a2702a6eace0d6ab8f942b139cf09ab68b793b8d17e49976
|
File details
Details for the file loggery-0.3.2-py3-none-any.whl.
File metadata
- Download URL: loggery-0.3.2-py3-none-any.whl
- Upload date:
- Size: 8.5 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/2.1.3 CPython/3.13.3 Darwin/24.4.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
baa88bea89ed931ab1f1a1564495e470850e448b30fd4a1551ba05041fd8d708
|
|
| MD5 |
f0130f963ffc23144a10a0f0d9f05c5f
|
|
| BLAKE2b-256 |
1710194ef200fc922223a0cf51188a4ca4e51538f22c258f35c2b8bb5f099e8e
|