fix(thon): add debug print for process check

Add debug print to output the result of the process check for easier debugging
This commit is contained in:
2026-03-07 13:53:30 +03:00
parent 0761e8ff94
commit 8ac6872c96

View File

@ -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