Skip to main content

✨ Features

  • Caller-aware helpers: liblaf.logging.info() and friends attribute shared helper logs to the first visible caller frame.
  • Rich console and file output: Handlers render compact time, level, location, highlighted messages, Rich renderables, pretty objects, and tracebacks.
  • Scoped array and tensor summaries: NumPy, Torch, and JAX output is compacted while records are rendered when those libraries are already imported.
  • Per-record rate limits: Add extra={"limits": "1/minute"} or a LimitOptions object to suppress noisy repeat logs.
  • Process hooks: init() captures warnings, uncaught exceptions, and unraisable exceptions through the standard logging pipeline; restore() releases hooks it still owns.
  • Optional adapters: exception and object formatting prefer liblaf.traceback and liblaf.pprint.pretty() when installed, without making either a dependency.
  • Structured progress rendering: records emitted by liblaf.progress are rendered directly without making progress tracking a logging concern.
  • Release-aware defaults: Development and prerelease distributions can get louder logger defaults while stable installed modules stay at NOTSET.

📦 Installation

uv add liblaf-logging

🚀 Quick Start

import liblaf.logging

liblaf.logging.init(force=True)
liblaf.logging.info("ready")
assert liblaf.logging.ic("ready") == "ready"

init() configures the root logger at INFO by default, installs Rich output, registers TRACE and ICECREAM level names, captures warnings, and adds exception hooks. When it creates handlers itself, each managed handler receives a LimitsFilter. While a record is rendered, NumPy, Torch, and JAX print options are scoped to compact summaries if those libraries are already loaded.

Use the module-level helpers when library or framework glue should log as the application code that called it.

import liblaf.logging


def announce() -> None:
    liblaf.logging.info("starting")

Install liblaf-progress separately when progress tracking is needed. Create and manage progress there; liblaf.logging renders the structured records it emits:

import liblaf.progress

progress = liblaf.progress.get_progress()
task = progress.add_task("Indexing", total=10)
progress.advance(task)

🚦 Rate Limits

Attach a limits value to an individual record.

import liblaf.logging

liblaf.logging.warning("still waiting", extra={"limits": "1/minute"})

For shared buckets, custom identifiers, or non-default costs, pass LimitOptions.

from liblaf.logging.filters import LimitOptions

liblaf.logging.warning(
    "sync retry",
    extra={
        "limits": LimitOptions(
            "5/minute",
            namespace=("sync",),
            identifiers=("account-42",),
            cost=1,
        )
    },
)

⚙️ Configuration

Settings use the LOG_ environment prefix through liblaf-conf. The most common options are LOG_LEVEL, LOG_FILE, LOG_TIME_RELATIVE, LOG_HIDE_FRAME, and LOG_HIDE_STABLE_RELEASE.

LOG_LEVEL=DEBUG LOG_FILE=logs/app.log python app.py

🧭 Release-Aware Defaults

SanitizedLogger checks module files against selected installed distributions when a logger is created without an explicit level. .devN distributions use the development level, prerelease distributions use the prerelease level, and stable distributions keep the normal NOTSET logger default.

The classifier expands metadata only for those selected distributions. Exact files are matched directly, and .pth files from selected distributions add source-tree prefixes for editable-style layouts. Stable distribution metadata is not expanded, and direct_url.json is not followed.

⌨️ Local Development

git clone https://github.com/liblaf/logging.git
cd logging
uv sync
uv run pytest
mise run docs:build

📝 License

Copyright © 2026 liblaf.
This project is MIT licensed.

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

liblaf_logging-0.2.0.tar.gz (21.0 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

liblaf_logging-0.2.0-py3-none-any.whl (31.0 kB view details)

Uploaded Python 3

File details

Details for the file liblaf_logging-0.2.0.tar.gz.

File metadata

  • Download URL: liblaf_logging-0.2.0.tar.gz
  • Upload date:
  • Size: 21.0 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for liblaf_logging-0.2.0.tar.gz
Algorithm Hash digest
SHA256 e807de051a4ae9323b8059781345393c1f16820ccee74766df1e3098d9d7d340
MD5 87ef46a4e42a898e7884714f96b814c4
BLAKE2b-256 c22291be337693eae0ceadf34dcfbd153f8ebf2f72ead029aeeafe07bfe4b4c2

See more details on using hashes here.

Provenance

The following attestation bundles were made for liblaf_logging-0.2.0.tar.gz:

Publisher: python-release.yaml on liblaf/logging

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file liblaf_logging-0.2.0-py3-none-any.whl.

File metadata

  • Download URL: liblaf_logging-0.2.0-py3-none-any.whl
  • Upload date:
  • Size: 31.0 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for liblaf_logging-0.2.0-py3-none-any.whl
Algorithm Hash digest
SHA256 114da46cdd5671e5ef84b4b68a49d06c81d3a51c1d86c32da5ddd21518a29ad5
MD5 0fccdb1b9ef93ee3e5a22019243a98f8
BLAKE2b-256 74ef02eae131eed47762fae36fbe479e208f495e6881ee6bfe0523bf36298bed

See more details on using hashes here.

Provenance

The following attestation bundles were made for liblaf_logging-0.2.0-py3-none-any.whl:

Publisher: python-release.yaml on liblaf/logging

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Release history Release notifications | RSS feed

This release

0.2.0 This release

2 files

0.1.4

2 files

0.1.3

2 files

0.1.2

2 files

0.1.1

2 files

0.1.0

2 files

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page