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 8672dc1 commit c26eec9Copy full SHA for c26eec9
sentry_sdk/integrations/logging.py
@@ -248,7 +248,9 @@ def _emit(self, record):
248
else:
249
event["logentry"] = {
250
"message": to_string(record.msg),
251
- "params": record.args,
+ "params": (
252
+ tuple(to_string(arg) for arg in record.args) if record.args else ()
253
+ ),
254
}
255
256
event["extra"] = self._extra_from_record(record)
0 commit comments