We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 64e2977 commit ed614c0Copy full SHA for ed614c0
2 files changed
sentry_sdk/integrations/langchain.py
@@ -443,7 +443,7 @@ def new_configure(*args, **kwargs):
443
elif isinstance(existing_callbacks, BaseCallbackHandler):
444
new_callbacks.append(existing_callbacks)
445
else:
446
- logger.warn("Unknown callback type: %s", existing_callbacks)
+ logger.debug("Unknown callback type: %s", existing_callbacks)
447
448
already_added = False
449
for callback in new_callbacks:
tests/integrations/django/myapp/settings.py
@@ -132,7 +132,7 @@ def middleware(request):
132
except (ImportError, KeyError):
133
from sentry_sdk.utils import logger
134
135
- logger.warn("No psycopg2 found, testing with SQLite.")
+ logger.warning("No psycopg2 found, testing with SQLite.")
136
137
138
# Password validation
0 commit comments