aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--lib/python/qmk/commands.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/lib/python/qmk/commands.py b/lib/python/qmk/commands.py
index 5a6e60988..4db4667a8 100644
--- a/lib/python/qmk/commands.py
+++ b/lib/python/qmk/commands.py
@@ -7,6 +7,7 @@ import subprocess
import shlex
import shutil
+from milc import cli
import qmk.keymap
@@ -83,4 +84,6 @@ def run(command, *args, **kwargs):
safecmd = ' '.join(safecmd)
command = [os.environ['SHELL'], '-c', safecmd]
+ cli.log.debug('Running command: %s', command)
+
return subprocess.run(command, *args, **kwargs)