[SOLVED]Sentry not capturing Python logs as logs, only as breadcrumbs for error events
I've set up Sentry in my FastAPI application to capture both errors and logs. My configuration successfully captures exceptions and logger.error() calls as "Issues" in Sentry, and I can see my logger.info() messages attached as breadcrumbs to those issues.
However, none of my logs are appearing in the "Logs" tab in Sentry. I would expect logger.info() and logger.warning() calls to appear there as separate, searchable log entries.
My Goal:
I want all log records (INFO, WARNING, ERROR) to be sent to Sentry and be visible in the "Logs" section, in addition to having ERROR-level logs create "Issues".
Here is a reproducible example of my setup. This code correctly sends exceptions to Sentry, but the logs are missing.