fix: change command failure log level to trace

Closes #1020
Closes #1024
This commit is contained in:
Matan Kushner
2020-03-22 17:56:18 -04:00
parent f267b3debe
commit bbba4e1657
+1 -1
View File
@@ -156,7 +156,7 @@ fn internal_exec_cmd(cmd: &str, args: &[&str]) -> Option<CommandOutput> {
})
}
Err(error) => {
log::error!("Executing command {:?} failed by: {:?}", cmd, error);
log::trace!("Executing command {:?} failed by: {:?}", cmd, error);
None
}
}