Closed frendhisaido closed 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.
sentry_sdk.integrations.log
sentry_sdk.integrations.logging
Yes, thank you very much, that is a typo I've made it when I was renaming the logging module to log.
Got this error when trying to setup a project using sentry
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 tosentry_sdk.integrations.logging
it worked.