Auto merge of #29432 - taralx:patch-2, r=alexcrichton
Discarding errors is bad, m'kay?
This commit is contained in:
commit
3896a00536
1 changed files with 2 additions and 2 deletions
|
|
@ -542,8 +542,8 @@ impl<'a> Context<'a> {
|
|||
continue
|
||||
}
|
||||
}
|
||||
Err(_) => {
|
||||
info!("no metadata found");
|
||||
Err(err) => {
|
||||
info!("no metadata found: {}", err);
|
||||
continue
|
||||
}
|
||||
};
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue