From 2bc81501e52b65cd6dabf6d100eaf4f57b89152f Mon Sep 17 00:00:00 2001 From: Mateusz Bysiek Date: Thu, 6 Nov 2025 18:23:14 +0900 Subject: [PATCH] fix: add missing args to a logging call --- ingit/runtime.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/ingit/runtime.py b/ingit/runtime.py index 5e38176..839b9d2 100644 --- a/ingit/runtime.py +++ b/ingit/runtime.py @@ -161,7 +161,9 @@ def execute_command(self, cmd: str, timeout: t.Optional[int] = None): try: subprocess.run(cmd, check=True, timeout=timeout, shell=True, cwd=project.path) except subprocess.TimeoutExpired: - _LOG.error('command "%s" in %s was aborted because it took too much time') + _LOG.error( + 'command "%s" in %s was aborted because it took too much time', + cmd, project) except subprocess.CalledProcessError as err: _LOG.error( 'command "%s" failed in %s:\nstderr: %s\nstdout: %s',