more logging

This commit is contained in:
Nickiel12 2023-08-25 22:22:17 -07:00
parent f88f190386
commit 16b74d9cdd

View file

@ -65,10 +65,11 @@ fn main() -> Result<(), Box<dyn std::error::Error>> {
let mut drive_temps: Vec<String> = vec![];
for drive in drives {
let output = match Command::new("hddtemp").arg(drive).output() {
let output = match Command::new("hddtemp").arg(drive.clone()).output() {
Ok(val) => val,
Err(e) => {
println!("Error running hddtemp: {}", e.to_string());
println!("Drive was: {}", drive);
return Ok(());
}
};