1
0
Mirror von https://github.com/Chaoscaot/schemsearch synchronisiert 2024-10-01 20:20:12 +02:00
Dieser Commit ist enthalten in:
Chaoscaot 2023-03-09 21:18:20 +01:00
Ursprung 6a24fc5410
Commit dd3e3a3c78

Datei anzeigen

@ -258,7 +258,9 @@ fn main() {
search_schempath(search_behavior, &pattern, &mut output_std, &mut output_std_csv, &mut output_file_csv, &mut output_file, &mut lock, &mut file_out, schematic, schem.get_name());
}
Err(e) => {
println!("Error while loading schematic ({}): {}", schem.get_name(), e.to_string());
if !output_std && !output_std_csv {
println!("Error while loading schematic ({}): {}", schem.get_name(), e.to_string());
}
}
}
}