blob: a1cfc9790fc7b7e3be4326c65f80d4dc0fa97435 (
plain)
1
2
3
4
5
6
7
8
|
# Logging
As said, logging is used. The logging gets saved in a client-specified directory (see [API](../../api/index.html)). Logging has the following levels:
- `INFO`: Messages purely for info, these do not indicate any errors. They are merely there for debugging purposes
- `WARNING`: This message indicates a warning, this can be e.g. non-fatal errors
- `ERROR`: Fatal errors which refuses the app from working
By default only messages below or equal to `WARNING` are logged (`WARNING`, `ERROR`). However, if the debug variable is set to `True`, all messages will be logged into the log file.
|