From 8ac6872c96df69e15d4fe58fb13d90d34db2d027 Mon Sep 17 00:00:00 2001 From: trojvn Date: Sat, 7 Mar 2026 13:53:30 +0300 Subject: [PATCH] fix(thon): add debug print for process check Add debug print to output the result of the process check for easier debugging --- thon/process.py | 1 + 1 file changed, 1 insertion(+) diff --git a/thon/process.py b/thon/process.py index aa37bd3..f38c3fe 100644 --- a/thon/process.py +++ b/thon/process.py @@ -176,6 +176,7 @@ class ProcessThon(Data): async def __aenter__(self) -> Self | str: r = await self.check() + print(r) if r != "OK": await self.disconnect() return r