keep.loggingΒΆ

Logging configuration for Keep.

Provides a single get_logger() function that all Keep modules use to obtain a logger. Centralising this ensures a consistent format and makes it easy to adjust verbosity from the CLI without touching individual modules.

Typical usage:

from keep.logging import get_logger

log = get_logger(__name__)
log.warning("skipping %s: %s", path, reason)