mirror of
https://github.com/zaphar/ucg.git
synced 2025-07-24 18:39:50 -04:00
FIX: Don't use debug to print out the errors.
Also fix some formatting.
This commit is contained in:
parent
be4feb12ba
commit
d254ff3f94
@ -112,7 +112,7 @@ fn do_compile(file: &str, cache: Rc<RefCell<Cache>>, registry: &ConverterRegistr
|
|||||||
let builder = match build_file(file, false, cache.clone()) {
|
let builder = match build_file(file, false, cache.clone()) {
|
||||||
Ok(builder) => builder,
|
Ok(builder) => builder,
|
||||||
Err(err) => {
|
Err(err) => {
|
||||||
eprintln!("{:?}", err);
|
eprintln!("{}", err);
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
@ -161,10 +161,10 @@ fn visit_ucg_files(
|
|||||||
let next_path = next_item.path();
|
let next_path = next_item.path();
|
||||||
let path_as_string = String::from(next_path.to_string_lossy());
|
let path_as_string = String::from(next_path.to_string_lossy());
|
||||||
if next_path.is_dir() && recurse {
|
if next_path.is_dir() && recurse {
|
||||||
if let Err(msg) =
|
if let Err(e) =
|
||||||
visit_ucg_files(&next_path, recurse, validate, cache.clone(), registry)
|
visit_ucg_files(&next_path, recurse, validate, cache.clone(), registry)
|
||||||
{
|
{
|
||||||
eprintln!("Err: {}", msg);
|
eprintln!("{}", e);
|
||||||
result = false;
|
result = false;
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user