fix: change command failure log level to trace
Closes #1020 Closes #1024
This commit is contained in:
parent
f267b3debe
commit
bbba4e1657
|
@ -156,7 +156,7 @@ fn internal_exec_cmd(cmd: &str, args: &[&str]) -> Option<CommandOutput> {
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
Err(error) => {
|
Err(error) => {
|
||||||
log::error!("Executing command {:?} failed by: {:?}", cmd, error);
|
log::trace!("Executing command {:?} failed by: {:?}", cmd, error);
|
||||||
None
|
None
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue