better debug messages in file validator

This commit is contained in:
Chris Cochrun 2023-02-17 15:01:38 -06:00
parent 85318706fc
commit c7b35f2b44

View file

@ -56,7 +56,7 @@ mod file_helper {
match _file_string { match _file_string {
None => { None => {
let _exists = Path::new(&file.to_string()).exists(); let _exists = Path::new(&file.to_string()).exists();
println!("{} does not exist", file.to_string()); println!("{} exists? {_exists}", file.to_string());
_exists _exists
} }
Some(file) => { Some(file) => {