s3rius / FastAPI-template

Feature rich robust FastAPI template.
MIT License
1.9k stars 164 forks source link

Fixes sentry sdk import module #216

Closed frendhisaido closed 1 month ago

frendhisaido commented 1 month ago

Got this error when trying to setup a project using sentry

api-1       |     from sentry_sdk.integrations.log import LoggingIntegration
api-1       | ModuleNotFoundError: No module named 'sentry_sdk.integrations.log'

I can't find any sentry_sdk.integrations.log from Sentry's API docs (https://getsentry.github.io/sentry-python/integrations.html). But when I changed It to sentry_sdk.integrations.logging it worked.

s3rius commented 1 month ago

Yes, thank you very much, that is a typo I've made it when I was renaming the logging module to log.