Skip to content

Commit 22c425b

Browse files
committed
fix bugs
1 parent 86186cb commit 22c425b

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

veadk/tracing/telemetry/telemetry.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -183,9 +183,7 @@ def set_common_attributes_on_tool_span(current_span: _Span) -> None:
183183
if hasattr(span.attributes, attr_name):
184184
current_span.set_attribute(attr_name, span.attributes[attr_name])
185185
else:
186-
logger.error(
187-
f"Parent span {span.name} does not have attribute {attr_name}"
188-
)
186+
logger.error(f"Parent span does not have attribute {attr_name}")
189187

190188

191189
def trace_send_data(): ...

0 commit comments

Comments
 (0)