Skip to content

Commit

Permalink
ref(proguard): Ungroup errors (#1461)
Browse files Browse the repository at this point in the history
  • Loading branch information
loewenheim authored May 13, 2024
1 parent 68baf2f commit 6aaa8a6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion crates/symbolicator-proguard/src/symbolication.rs
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ impl ProguardService {
match res {
Ok(mapper) => mappers.push(mapper.get()),
Err(e) => {
tracing::error!(%debug_id, error = %e, "Error reading Proguard file");
tracing::error!(%debug_id, "Error reading Proguard file: {e}");
let kind = match e {
CacheError::Malformed(msg) => match msg.as_str() {
"The file is not a valid ProGuard file" => ProguardErrorKind::Invalid,
Expand Down

0 comments on commit 6aaa8a6

Please sign in to comment.