Skip to content

Commit a5d78e0

Browse files
committed
fix: add some logging
1 parent 248642d commit a5d78e0

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "uipath-mcp"
3-
version = "0.0.56"
3+
version = "0.0.57"
44
description = "UiPath MCP SDK"
55
readme = { file = "README.md", content-type = "text/markdown" }
66
requires-python = ">=3.10"

src/uipath_mcp/_cli/_runtime/_runtime.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -276,7 +276,9 @@ async def _register(self) -> None:
276276
stderr_temp.seek(0)
277277
server_stderr_output = stderr_temp.read().decode('utf-8', errors='replace')
278278
# We'll handle this after exiting the context managers
279-
279+
logger.info("Exiting client session context")
280+
logger.info("Exiting stdio client context")
281+
logger.info("Exiting temporary file context")
280282
# We don't continue with registration here - we'll do it after the context managers
281283

282284
except BaseException as e:

0 commit comments

Comments
 (0)