Skip to content

Commit

Permalink
Auto merge of rust-lang#29432 - taralx:patch-2, r=alexcrichton
Browse files Browse the repository at this point in the history
Discarding errors is bad, m'kay?
  • Loading branch information
bors committed Oct 29, 2015
2 parents e8e6892 + 9cdd731 commit 3896a00
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/librustc/metadata/loader.rs
Original file line number Diff line number Diff line change
Expand Up @@ -542,8 +542,8 @@ impl<'a> Context<'a> {
continue
}
}
Err(_) => {
info!("no metadata found");
Err(err) => {
info!("no metadata found: {}", err);
continue
}
};
Expand Down

0 comments on commit 3896a00

Please sign in to comment.