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 cd42665 commit 909d94cCopy full SHA for 909d94c
sentry_sdk/integrations/logging.py
@@ -249,7 +249,7 @@ def _emit(self, record):
249
event["logentry"] = {
250
"message": to_string(record.msg),
251
"params": (
252
- tuple(to_string(arg) if arg is None else arg for arg in record.args)
+ tuple(str(arg) if arg is None else arg for arg in record.args)
253
if record.args
254
else ()
255
),
0 commit comments