We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 11abdd2 commit 65132baCopy full SHA for 65132ba
sentry_sdk/integrations/logging.py
@@ -232,10 +232,10 @@ def _emit(self, record):
232
event["logger"] = record.name
233
234
# Log records from `warnings` module as separate issues
235
- record_caputured_from_warnings_module = (
+ record_captured_from_warnings_module = (
236
record.name == "py.warnings" and record.msg == "%s"
237
)
238
- if record_caputured_from_warnings_module:
+ if record_captured_from_warnings_module:
239
# use the actual message and not "%s" as the message
240
# this prevents grouping all warnings under one "%s" issue
241
msg = record.args[0] # type: ignore
0 commit comments