Skip to content

Commit f7f2aee

Browse files
committed
cli: Show conan command being executed in verbose mode
1 parent 98ec84e commit f7f2aee

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

cli/cloe_launch/exec.py

+1
Original file line numberDiff line numberDiff line change
@@ -335,6 +335,7 @@ def _prepare_virtualenv(self, with_json: bool = False) -> None:
335335
for arg in self.conan_args:
336336
conan_cmd.append(arg)
337337
conan_cmd.append(self.profile_path)
338+
logging.debug(f"Exec: {' '.join(conan_cmd)}")
338339
result = subprocess.run(conan_cmd, check=False, capture_output=self.capture_output)
339340
if result.returncode == 0:
340341
# Short-circuit out if everything is fine.

0 commit comments

Comments
 (0)