We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a6b083b commit 1a35e02Copy full SHA for 1a35e02
sentry_sdk/integrations/loguru.py
@@ -162,8 +162,8 @@ def loguru_sentry_logs_handler(message):
162
record = message.record
163
164
if (
165
- LoguruIntegration.sentry_logs_level is not None
166
- and record["level"].no < LoguruIntegration.sentry_logs_level
+ LoguruIntegration.sentry_logs_level is None
+ or record["level"].no < LoguruIntegration.sentry_logs_level
167
):
168
return
169
0 commit comments