Skip to content

Commit 3896a00

Browse files
committed
Auto merge of #29432 - taralx:patch-2, r=alexcrichton
Discarding errors is bad, m'kay?
2 parents e8e6892 + 9cdd731 commit 3896a00

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/librustc/metadata/loader.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -542,8 +542,8 @@ impl<'a> Context<'a> {
542542
continue
543543
}
544544
}
545-
Err(_) => {
546-
info!("no metadata found");
545+
Err(err) => {
546+
info!("no metadata found: {}", err);
547547
continue
548548
}
549549
};

0 commit comments

Comments
 (0)