Skip to main content

Env-aware logging with per-call stdout control and a handy ErrorHandler.

Project description

logging-and-error-handling-kit

Env-aware logging with per-call stdout control and rotating file handlers. Designed for services that need clean console logs in dev and quiet consoles in prod—without losing file logs.

PyPI Python License: MIT

Features

  • Per-call stdout control: logger.info("...", display_on_stdout=False)
  • Env-aware default: console shows logs in local/staging, stays quiet in prod (APP_ENV=prod)
  • Rotating files: service.log, errors.log, optional debug.log
  • One-liner setup with setup_logger("service-name") and get_logger(__name__)
  • Compatible with standard logging API; no vendor lock-in.

Install

pip install logging-and-error-handling-kit

Quickstart

from logging_and_error_handling_kit import setup_logger, get_logger

setup_logger("translation-service")  # once at app startup
log = get_logger(__name__)

log.info("Hello!")                                  # prints in non-prod, always goes to files
log.info("Silent on console", display_on_stdout=False)  # still goes to files
log.error("Oops", display_on_stdout=True)           # force to console (subject to handler level)

How it decides what hits stdout

  • APP_ENV controls the default:

    • APP_ENV=prod → default display_on_stdout=False
    • any other (or unset) → default True
  • You can override per call: display_on_stdout=True/False

  • Console level via CONSOLE_LOG_LEVEL (default INFO)

Environment variables

Name Default Purpose
APP_ENV local Env profile: local, staging, prod
CONSOLE_LOG_LEVEL INFO Console verbosity (DEBUG, INFO, WARNING, ERROR)
DEBUG False If true, also writes detailed debug.log
LOGS_DIR (if you add this) logs Directory for log files

Tip: Add a .env and use python-dotenv (already in dependencies) to load these at startup.

File outputs (rotating)

  • logs/service.logINFO+
  • logs/errors.logERROR+
  • logs/debug.logDEBUG+ (only if DEBUG=true)

API

setup_logger(name: str) -> ServiceLogger
    # Initializes handlers/formatters/filters on the root logger and sets global service name.

get_logger(name: str) -> logging.Logger
    # Standard logger retrieval.

clear_logs() -> None
    # Deletes the entire 'logs' directory.

clear_logs_befor(cutoff_date: str) -> None
    # Prunes entries before the given date ('YYYY-MM-DD' or 'YYYY-MM-DD HH:MM:SS').
# Log methods (standard logging API) accept:
logger.info(msg, *args, display_on_stdout: bool = <env default>, **kwargs)
logger.debug(...)
logger.warning(...)
logger.error(...)
logger.critical(...)
logger.exception(msg, *args, display_on_stdout=<env default>, **kwargs)
    # .exception sets exc_info=True automatically

Examples

Service-style bootstrap

import os
from logging_and_error_handling_kit import setup_logger, get_logger
from dotenv import load_dotenv

load_dotenv()        # loads APP_ENV, CONSOLE_LOG_LEVEL, etc.
setup_logger()

log = get_logger("my.service")

log.info("Service starting…")
try:
    1 / 0
except Exception:
    log.exception("Calculation failed", display_on_stdout=True)

Quiet console in prod, verbose locally

# local
export APP_ENV=local
python app.py  # console shows logs

# prod
export APP_ENV=prod
python app.py  # console minimal unless you force display_on_stdout=True

Project structure (suggested)

src/
  logging_and_error_handling_kit/
    __init__.py
    error_handler.py
    logger_config.py
README.md
LICENSE
pyproject.toml

Versioning & releases

  1. Bump version in pyproject.toml
  2. Build: python -m build
  3. Upload: python -m twine upload dist/*
  4. Install: pip install logging-and-error-handling-kit

Contributing

Issues and PRs welcome. Please add tests and keep public API stable.

License

MIT – see LICENSE.


How to publish the README changes to PyPI

  • Edit README.md

  • Ensure pyproject.toml has readme = "README.md"

  • Rebuild & upload a new version:

    # bump version in pyproject.toml (e.g., 0.1.2)
    python -m build
    python -m twine upload dist/*
    

Project details


Download files

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

Source Distribution

logging_and_error_handling_kit-0.1.13.tar.gz (11.2 kB view details)

Uploaded Source

Built Distribution

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

File details

Details for the file logging_and_error_handling_kit-0.1.13.tar.gz.

File metadata

File hashes

Hashes for logging_and_error_handling_kit-0.1.13.tar.gz
Algorithm Hash digest
SHA256 35a3b17cd8643d8cbd86918ffce2afc9158f76dd88dda91e3d6a67eb488860e0
MD5 f7242f43cb64202e32a9ceb24273920f
BLAKE2b-256 480db0e211ebcfa3679929bf63b8ecf64941127ebe4a02f5a864f3b14d4afb2f

See more details on using hashes here.

File details

Details for the file logging_and_error_handling_kit-0.1.13-py3-none-any.whl.

File metadata

File hashes

Hashes for logging_and_error_handling_kit-0.1.13-py3-none-any.whl
Algorithm Hash digest
SHA256 0d99858af5f8822abfc99d6015591a1d4acc324ba640396ea332b7fd46a44916
MD5 d64961e4ec1dd355fcbb73e5c18a706d
BLAKE2b-256 13072a7a6485f3a1fb737a9eb58a15f630b4f4f4a87035f51e0575b4a0e271e3

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page