We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 98ec84e commit f7f2aeeCopy full SHA for f7f2aee
cli/cloe_launch/exec.py
@@ -335,6 +335,7 @@ def _prepare_virtualenv(self, with_json: bool = False) -> None:
335
for arg in self.conan_args:
336
conan_cmd.append(arg)
337
conan_cmd.append(self.profile_path)
338
+ logging.debug(f"Exec: {' '.join(conan_cmd)}")
339
result = subprocess.run(conan_cmd, check=False, capture_output=self.capture_output)
340
if result.returncode == 0:
341
# Short-circuit out if everything is fine.
0 commit comments