Skip to content

Commit b1ba5e6

Browse files
committed
chore(tool): Remove message for debug
Removes a message used for debug in the fingerprint dump command of the CPU template helper tool. ``` $ sudo cpu-template-helper fingerprint dump --config config.json Some(0) ``` Signed-off-by: Takahiro Itazuri <[email protected]>
1 parent e22e89b commit b1ba5e6

File tree

1 file changed

+1
-1
lines changed
  • src/cpu-template-helper/src/fingerprint

1 file changed

+1
-1
lines changed

src/cpu-template-helper/src/fingerprint/dump.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ fn run_shell_command(cmd: &str) -> Result<String, Error> {
7373
.args(["-c", cmd])
7474
.output()
7575
.map_err(|err| Error::ShellCommand(cmd.to_string(), err.to_string()))?;
76-
println!("{:?}", output.status.code());
76+
7777
if !output.status.success() {
7878
return Err(Error::ShellCommand(
7979
cmd.to_string(),

0 commit comments

Comments
 (0)