This commit is contained in:
Daniel Tomlinson
2022-10-10 21:27:55 +01:00
parent f3df6290c1
commit 2942e36e60

16
docs/todo.todo Normal file
View File

@@ -0,0 +1,16 @@
Features:
☐ Add simple one-line logger
☐ Try Typer
<https://typer.tiangolo.com/>
One-line logger
```
LOGGER = panaetius.set_logger(
CONFIG,
panaetius.CustomLogger(
logging_format='{"time": "%(asctime)s", "logging_level":"%(levelname)s", "message": "%(message)s"}',
logging_level=CONFIG.logging_level,
),
)
```