Skip to content

Commit

Permalink
Record the file_id for failed BundleIndex downloads (#1318)
Browse files Browse the repository at this point in the history
  • Loading branch information
Swatinem authored Oct 4, 2023
1 parent d3636dd commit 51260f4
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,7 @@ async fn maybe_fetch_bundle_index(
Ok(bundle_index) => Some((file_id, bundle_index)),
Err(err) => {
let err: &dyn std::error::Error = &err;
tracing::error!(err, "Failed fetching `BundleIndex`");
tracing::error!(err, ?file_id, "Failed fetching `BundleIndex`");
None
}
}
Expand Down

0 comments on commit 51260f4

Please sign in to comment.