Skip to content

Commit fe5841d

Browse files
authored
fix: make run command logged at info (#639)
From #629 Maybe this level should be split for more granularity like: - `status` for messages that should always be outputted like when it enters a `configure`/`build` stage, etc. - `info` for tracing basic execution, like in this case what commands are run Signed-off-by: Cristian Le <[email protected]>
1 parent 99aea6e commit fe5841d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/scikit_build_core/_shutil.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ def _run(
6666
logger.debug("RUNENV - changes since last run only:\n {}", msg)
6767
type(self)._prev_env = self.env.copy()
6868

69-
logger.debug("RUN: {}", " ".join(options))
69+
logger.info("RUN: {}", " ".join(options))
7070

7171
return subprocess.run(
7272
options,

0 commit comments

Comments
 (0)