Open niksirbi opened 3 hours ago
Our current logging configuration only adds a rotating file handler, and does not configure a console handler. This means:
What we would actually want:
To achieve this behaviour, we need to add a console handler to our logger and set the appropriate log levels for both handlers.
We could also use loguru or fancylog to reduce the amount of logging configuration we have to do on our side.
If we go with fancylog, we'd have to first address this issue.
fancylog
Our current logging configuration only adds a rotating file handler, and does not configure a console handler. This means:
What we would actually want:
To achieve this behaviour, we need to add a console handler to our logger and set the appropriate log levels for both handlers.