Dead-simple logging: what python's logging should've been
Project description
Dead Simple Logging
What python's
loggingshould'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
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
dslog-0.2.10.tar.gz
(7.0 kB
view details)
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 dslog-0.2.10.tar.gz.
File metadata
- Download URL: dslog-0.2.10.tar.gz
- Upload date:
- Size: 7.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.11.10
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
646e2b33105f87ebf9b5383926a6a9bb596f3a1c6258f341ccf426ece2ad8608
|
|
| MD5 |
2e32f3dba91d80beb30263309ea86889
|
|
| BLAKE2b-256 |
9b77d3e6ceb0fc0411070c9551209f7c87d1f0058ea7ca7ec853d0e7589cadd4
|
File details
Details for the file dslog-0.2.10-py3-none-any.whl.
File metadata
- Download URL: dslog-0.2.10-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
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
24fd8db96a8f37c8861fb0c12bef09ff3d698cf3f9e7a3e76f61edd3e6408ba2
|
|
| MD5 |
c3c94f5ab1d23dbb44ace0a364583366
|
|
| BLAKE2b-256 |
41c859630362ab5b4981b9ce2132be3ddc8ee28d61b5ce2b24be6c8d4509555a
|