1
0
mirror of https://github.com/Llewellynvdm/starship.git synced 2024-06-01 08:00:51 +00:00

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
No known key found for this signature in database
GPG Key ID: 4B98C3A8949CA8A4

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
}
}