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',