diff --git a/lib/helper.py b/lib/helper.py index 39ed0d9..54970a8 100644 --- a/lib/helper.py +++ b/lib/helper.py @@ -15,7 +15,7 @@ def run_subprocess(command: str, workdir: str) -> bool: bool: False if subprocess fails """ try: - subprocess.run(command, cwd=workdir, shell=True, text=True) + log.debug(subprocess.run(command, cwd=workdir, shell=True, text=True)) except subprocess.CalledProcessError: return False