s3rius / FastAPI-template

Feature rich robust FastAPI template.
MIT License
2.02k stars 174 forks source link

Fixes sentry sdk import module #216

Closed frendhisaido closed 4 months ago

frendhisaido commented 4 months 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 4 months ago

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