Skip to main content

Dead-simple logging: what python's logging should've been

Project description

Dead Simple Logging

What python's logging should've been

Installation

pip install dslog

Usage

  • Any custom "handler" (aka function to actually print)
import rich
from dslog import Logger

logger = Logger.of(rich.print) \
  .limit('WARNING') \
  .format(lambda *objs, level: (f'[bold][{level}][/]', *objs))

logger('My message', ..., level='INFO')
# doesn't print anything
logger('Oops!', { 'more': 'details' }, level='WARNING')
# [WARNING] Oops! { 'more', 'details' }     ([WARNING] in bold text)
  • Or some of the predefined ones, which come already formatted
Logger.rich()
Logger.file('log.txt')
  • Or the best default logger
Logger.empty()

uvicorn/fastapi Logging

If you've used it before, you know it sucks. No more:

from fastapi import FastAPI
import uvicorn
from dslog import Logger
from dslog.uvicorn import setup_loggers_lifespan, DEFAULT_FORMATTER, ACCESS_FORMATTER

logger = Logger.click().prefix('[MY API]')

app = FastAPI(lifespan=setup_loggers_lifespan(
  access=logger.prefix('[ACCESS]').format(ACCESS_FORMATTER).limit('WARNING'),
  uvicorn=logger.format(DEFAULT_FORMATTER).limit('INFO'),
))

uvicorn.run(app)

# The initial logs will run (uvicorn is quite stubborn):

# INFO: Started server process [95349]
# INFO: Waiting for application startup.

# But then, all the logs are controlled by you (ie. your logger)

# [INFO] [MY API] Uvicorn running on http://0.0.0.0:8000 (Press CTRL+C to quit)
# [WARNING] [MY API] [ACCESS] ...

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

dslog-0.2.7.tar.gz (6.9 kB view details)

Uploaded Source

Built Distribution

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

dslog-0.2.7-py3-none-any.whl (9.5 kB view details)

Uploaded Python 3

File details

Details for the file dslog-0.2.7.tar.gz.

File metadata

  • Download URL: dslog-0.2.7.tar.gz
  • Upload date:
  • Size: 6.9 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.11.10

File hashes

Hashes for dslog-0.2.7.tar.gz
Algorithm Hash digest
SHA256 19f6a68abc31c29b3ef85626f0fe8c0a37789e941f57d92f2658c6ced5e9b8d0
MD5 9151427f45f57ed62c3949bf43a1f85e
BLAKE2b-256 6475c80814adba406b916eabecad725d56a9e02303c479ddf58b9eab3766d1df

See more details on using hashes here.

File details

Details for the file dslog-0.2.7-py3-none-any.whl.

File metadata

  • Download URL: dslog-0.2.7-py3-none-any.whl
  • Upload date:
  • Size: 9.5 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.11.10

File hashes

Hashes for dslog-0.2.7-py3-none-any.whl
Algorithm Hash digest
SHA256 0f9525e137246ad73a33ef8a3f23c508584a0baea3bbbd86d87228421fc5eaf6
MD5 a8ab40010bd936716439b4e327c0029d
BLAKE2b-256 11e72b585ffcbb166e07658bead6bd53796595ed1b562b5dfb51970107618093

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