19 lines
368 B
Markdown
Raw Normal View History

2024-12-05 07:22:54 +00:00
# Mololog
Mololog is a logging framework for python applications.
It contains three applications:
- mololog.serve
- mololog.test
- mololog.bench
## Running mololog server
```
mololog.serve --host=127.0.0.1 --port=3016 --db=mololog.db
```
## Implementation of logger in application
```
from mololog.client import patch
patch("https://your-logging-server.nl")
```