You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
We have integrations that make the python logger create breadcrumbs and
issues. This adds a third handler which creates Sentry logs on
`logger.log` statements.
Enable the logger with:
```python
sentry_sdk.init(
...
_experiments={
"enable_sentry_logs": True
}
)
some_logger = logging.Logger("some-logger")
some_logger.info('Finished sending answer! #chunks=%s', chunks)
```

Refs #4150
---------
Co-authored-by: Anton Pirker <[email protected]>
Make the
logging
integration create breadcrumbs and issues.Something like this:
The text was updated successfully, but these errors were encountered: