From ce2eb766466b8759138d79dc43d19a0ca18b3312 Mon Sep 17 00:00:00 2001 From: Dylan De Faoite Date: Sun, 1 Feb 2026 01:09:35 +0000 Subject: [PATCH] chore: improve logging --- rewind/daemon.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rewind/daemon.py b/rewind/daemon.py index 999ab0f..9ffe826 100755 --- a/rewind/daemon.py +++ b/rewind/daemon.py @@ -35,7 +35,7 @@ def open_obs(): shutil.rmtree(SENTINEL_FILE) logger.info("Removed existing OBS .sentinel directory") except Exception as e: - logger.error("Could not delete OBS .sentinel directory") + logger.error(f"Could not delete OBS .sentinel directory: {e}") # Using and not checking OBS since it needs to be non-blocking subprocess.Popen(["obs", "--minimize-to-tray"], stdout=subprocess.DEVNULL, stderr=subprocess.DEVNULL)