From 4e66fa5d34d5591a3059206e319574b51c995e07 Mon Sep 17 00:00:00 2001 From: Altan Orhon Date: Thu, 28 Sep 2023 14:58:30 -0700 Subject: [PATCH] Corrected log messagE --- hyakvnc/vncsession.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hyakvnc/vncsession.py b/hyakvnc/vncsession.py index 657dcd9..6d57d1b 100644 --- a/hyakvnc/vncsession.py +++ b/hyakvnc/vncsession.py @@ -60,7 +60,7 @@ def parse_vnc_info(self) -> None: logger.debug(f"Could not find vnc log file at {self.vnc_log_file_path}") self.vnc_pid_file_path = self.vnc_log_file_path.with_suffix(".pid") if not self.vnc_pid_file_path.is_file(): - logger.debug(f"Could not find vnc log file at {self.vnc_pid_file_path}") + logger.debug(f"Could not find vnc PID file at {self.vnc_pid_file_path}") def vnc_pid_file_exists(self) -> bool: if not self.vnc_pid_file_path: