summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMatan Kushner <hello@matchai.dev>2020-03-22 17:56:18 -0400
committerMatan Kushner <hello@matchai.dev>2020-03-22 17:58:46 -0400
commitbbba4e1657f518fdddb2cf2f3e8769e72c706255 (patch)
treece56eb1c5bc9358ff0d6aa975b2ba494308eefc5
parentf267b3debe66da6d94ba3e4a329eb524f81e946c (diff)
fix: change command failure log level to trace
Closes #1020 Closes #1024
-rw-r--r--src/utils.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/utils.rs b/src/utils.rs
index aa85881b7..82328388b 100644
--- a/src/utils.rs
+++ b/src/utils.rs
@@ -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
}
}