Skip to content

Commit ce9e15e

Browse files
feat: Telemetry in A2A Python SDK
1 parent bb44b3d commit ce9e15e

File tree

1 file changed

+0
-4
lines changed

1 file changed

+0
-4
lines changed

src/a2a/utils/telemetry.py

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -163,10 +163,6 @@ async def async_wrapper(*args, **kwargs) -> any:
163163
except Exception as e:
164164
exception = e
165165
span.record_exception(e)
166-
formatted_traceback = ''.join(
167-
traceback.format_exception(type(e), e, e.__traceback__)
168-
)
169-
print(formatted_traceback)
170166
span.set_status(StatusCode.ERROR, description=str(e))
171167
raise
172168
finally:

0 commit comments

Comments
 (0)