debug print on runtime errors

This commit is contained in:
galister
2025-05-10 16:13:37 +09:00
parent 6e08b7f3af
commit ed5b0307d7

View File

@@ -137,7 +137,7 @@ fn auto_run(running: Arc<AtomicBool>, args: Args) {
Ok(()) => return,
Err(BackendError::NotSupported) => (),
Err(e) => {
log::error!("{e}");
log::error!("{e:?}");
return;
}
}
@@ -150,7 +150,7 @@ fn auto_run(running: Arc<AtomicBool>, args: Args) {
Ok(()) => return,
Err(BackendError::NotSupported) => (),
Err(e) => {
log::error!("{e}");
log::error!("{e:?}");
return;
}
}