Skip to content

Commit 909d94c

Browse files
committed
Make mypy happy
1 parent cd42665 commit 909d94c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

sentry_sdk/integrations/logging.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -249,7 +249,7 @@ def _emit(self, record):
249249
event["logentry"] = {
250250
"message": to_string(record.msg),
251251
"params": (
252-
tuple(to_string(arg) if arg is None else arg for arg in record.args)
252+
tuple(str(arg) if arg is None else arg for arg in record.args)
253253
if record.args
254254
else ()
255255
),

0 commit comments

Comments
 (0)