more fine-tune logging
This commit is contained in:
parent
40131dcad8
commit
6ef6ef6588
1 changed files with 7 additions and 1 deletions
|
@ -37,7 +37,13 @@ fn main() -> Result<(), Box<dyn std::error::Error>> {
|
|||
let mut drives: Vec<String> = vec![];
|
||||
|
||||
{
|
||||
let rust_drives = std::fs::read_dir("/dev/").unwrap();
|
||||
let rust_drives = match std::fs::read_dir("/dev/") {
|
||||
Ok(val) => val,
|
||||
Err(e) => {
|
||||
println!("Error opening /dev/: {}", e.to_string());
|
||||
return Ok(());
|
||||
}
|
||||
};
|
||||
|
||||
for path in rust_drives {
|
||||
match path {
|
||||
|
|
Loading…
Reference in a new issue