Mihai Bivol
Mihai Bivol
Also, another bug, that might be easy to fix (didn't look much into formatters) is this: For: ``` [{"id": 1, "value": 1}, {"id": 2, "value": 2}] [{"id": 0, "value": 42},...
## Which logger to use: Use per module loggers: ``` python logger = logging.getLogger(__name__) ``` or, in Celery tasks ``` python logger = get_task_logger(__name__) ``` ## Log in a Sentry...
@kaplun There are still some shortfalls in properly understanding how Sentry is initialized. So far It seems that we need to use `current_app.logger.log('anything')` so that all the handlers are put...