Skip to content

Commit 53a6144

Browse files
committed
Fixed: string and stringified exception context was identical. Omit stringified.
1 parent 0197256 commit 53a6144

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/mavedb/lib/logging/context.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -106,6 +106,6 @@ def format_raised_exception_info_as_dict(err: BaseException) -> dict:
106106

107107
# We did our best to construct useful traceback info
108108
except IndexError:
109-
exc_ctx["captured_exception_info"]["stringified"] = str(err)
109+
pass
110110

111111
return exc_ctx

0 commit comments

Comments
 (0)