https://github.com/alexdemure/gadlogging
A production-ready logging configuration module for Python.
https://github.com/alexdemure/gadlogging
logger logging
Last synced: about 1 year ago
JSON representation
A production-ready logging configuration module for Python.
- Host: GitHub
- URL: https://github.com/alexdemure/gadlogging
- Owner: AlexDemure
- License: mit
- Created: 2025-04-07T06:26:45.000Z (about 1 year ago)
- Default Branch: production
- Last Pushed: 2025-04-12T08:05:57.000Z (about 1 year ago)
- Last Synced: 2025-04-23T21:02:14.211Z (about 1 year ago)
- Topics: logger, logging
- Language: Python
- Homepage:
- Size: 21.5 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
A production-ready logging configuration module for Python.
---
### Installation
```
pip install gadlogging
```
### Usage
```python
import json
import sys
import logging
from gadlogging import config, Logger
config.setup(Logger("root", logging.INFO, json, sys.stdout))
logger = logging.getLogger()
```
