Python logging configuration library for MLCommons AIRR applications.
Project description
Modellogger
The modellogger package provides a standardized logging configuration for AIRR applications.
Usage
Install in a poetry project: poetry add git+https://github.com/mlcommons/modellogger.git
Near the top of any file where you want to log, do something like:
from modellogger.log_config import get_logger
logger = get_logger(__name__)
Then as early as possible in your program's startup, tell it how to handle the logging:
import logging
from modellogger.log_config import configure_logging
configure_logging(app_name="myapp", level=logging.INFO)
You can then log like this
logger.info("some info logging")
The default output looks like this:
2026-01-09T21:14:13Z - myapp - __main__ - INFO - some info logging
DefaultFormatter
A class that formats log messages with UTC timestamps and optional ANSI color codes for console output.
configure_logging
A function that configure the root logger with console and optional file output.
from modellogger.log_config import configure_logging
logger = configure_logging(app_name="modelrunner-api", file="./app.log", level=logging.DEBUG)
get_config_dict
Generates logging configuration dictionaries for use with logging.config.dictConfig. By default, the app name is derived from the package name, but that can be overridden.
This is particularly useful for FastAPI applications, which can adopt this logger by using something like:
run(app, host="0.0.0.0", port=port, log_config=get_config_dict(app_name="modelrunner-api"))
Example Output
2025-12-19T14:10:24Z - modelrunner-api - INFO - 127.0.0.1:36054 - "GET /health HTTP/1.1" 200
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 airr_modellogger-0.1.2.tar.gz.
File metadata
- Download URL: airr_modellogger-0.1.2.tar.gz
- Upload date:
- Size: 6.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.8.5 CPython/3.13.4 Darwin/25.2.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
175a654a941e328903ce676c93a0da9a78e1c13fc24f439e411be3f026aa45d1
|
|
| MD5 |
d48526fe23b3fae95216cbb5bd46f485
|
|
| BLAKE2b-256 |
a24f99478e73191548130feb48281c4bd1ac56049665b419b58dc0b022272a93
|
File details
Details for the file airr_modellogger-0.1.2-py3-none-any.whl.
File metadata
- Download URL: airr_modellogger-0.1.2-py3-none-any.whl
- Upload date:
- Size: 7.3 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.8.5 CPython/3.13.4 Darwin/25.2.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
70c3c225f6a79e8cd9a30c018e015cbcd6f5166416961560e8f6f9639916ad75
|
|
| MD5 |
fe67f2eb78c0fb0949aa3370ab9a5bf1
|
|
| BLAKE2b-256 |
cd99c9cec5bfbfca85a31237a44a5ec7e2aeeb634c46d3c4dbb2fa5e16ef6626
|