Skip to content
This repository was archived by the owner on Mar 4, 2026. It is now read-only.

Commit 0a053b4

Browse files
committed
test
1 parent a101411 commit 0a053b4

1 file changed

Lines changed: 4 additions & 1 deletion

File tree

src/uipath/core/tracing/manager.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,11 +23,14 @@ def register_span(self, span: Span) -> None:
2323
span_id = span.get_span_context().span_id
2424
parent_id = span.parent.span_id if span.parent else None
2525

26+
# logger.info("Registering span: %s ", str(span))
27+
2628
self._spans[span_id] = span
2729
self._parent_map[span_id] = parent_id
2830

2931
parent_str = f"{parent_id:016x}" if parent_id is not None else "None"
30-
logger.debug(
32+
33+
logger.info(
3134
f"SpanRegistry: registered span: {span.name} (id: {span_id:016x}, parent: {parent_str})"
3235
)
3336

0 commit comments

Comments
 (0)