feat: Error printing using debug formatter

This commit is contained in:
Karolin Varner
2024-02-13 17:01:58 +01:00
parent 3a4df6d41b
commit 058069e41f

View File

@@ -10,7 +10,7 @@ pub fn main() {
match Cli::run() {
Ok(_) => {}
Err(e) => {
error!("{e}");
error!("{e:?}");
exit(1);
}
}