Log errors

This commit is contained in:
Roey Darwish Dror
2021-01-15 06:16:28 +02:00
parent d51912d391
commit 3a0c419466

View File

@@ -45,7 +45,8 @@ impl<'a> Runner<'a> {
}
break;
}
Err(_) => {
Err(e) => {
debug!("Step {:?} failed: {:?}", key, e);
let interrupted = ctrlc::interrupted();
if interrupted {
ctrlc::unset_interrupted();