You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If you execute this, it creates an exception with traceback that includes the cause:
$ python bar.py
Traceback (most recent call last):
File "bar.py", line 2, in <module>
raise ValueError("some value")
ValueError: some value
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "bar.py", line 4, in <module>
raise TypeError("some type")
TypeError: some type
I would expect the traceback in spans to also include the cause simply because that matches interpreter behavior when printing tracebacks and also matches how logging works. Unfortunately it doesn't.
When an exception is raised as part of handling another exception, it gets a
__cause__
attribute set, so that one can determine the cause.Example:
If you execute this, it creates an exception with traceback that includes the cause:
I would expect the traceback in spans to also include the cause simply because that matches interpreter behavior when printing tracebacks and also matches how logging works. Unfortunately it doesn't.
Tracebacks are formatted in
lightstep-tracer-python/lightstep/recorder.py
Line 174 in b8a47e2
lightstep-tracer-python/lightstep/util.py
Lines 108 to 112 in b8a47e2
traceback.format_tb
. The latter doesn't take the cause into consideration.Amending the example used earlier to print the traceback using the same formatting used in spans shows that the cause is missing
Output:
It would be great, if this could be changed to include information about the cause.
The text was updated successfully, but these errors were encountered: