feat: Improve error output during extraction

This commit is contained in:
Lucas Schwiderski 2022-12-28 18:29:26 +01:00
parent b8b4802cd9
commit 5cc97959a5
Signed by: lucas
GPG key ID: AA12679AAA6DF4D8

View file

@ -371,7 +371,7 @@ where
.wrap_err("Failed to decompile") .wrap_err("Failed to decompile")
.with_section(|| name.header("File")); .with_section(|| name.header("File"));
tracing::error!("{:#}", err); tracing::error!("{:?}", err);
} }
}; };
} }