From 8ce9d46dad5761df6ad05c81c386f58642666716 Mon Sep 17 00:00:00 2001 From: Padawan-GM Date: Wed, 17 Dec 2025 17:58:18 +0100 Subject: [PATCH] Added start command debug log --- controllers.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/controllers.py b/controllers.py index 454fbdd..7477a22 100644 --- a/controllers.py +++ b/controllers.py @@ -38,6 +38,10 @@ class ProcessController: ) return + logger.debug( + "ProcessController.start() - Running start command: `%s`", + self.start_command, + ) self.process = Popen( self.start_command, stdout=None,