Auto merge of #29432 - taralx:patch-2, r=alexcrichton

Discarding errors is bad, m'kay?
This commit is contained in:
bors 2015-10-29 05:08:56 +00:00
commit 3896a00536

View File

@ -542,8 +542,8 @@ fn extract_one(&mut self, m: HashMap<PathBuf, PathKind>, flavor: &str,
continue
}
}
Err(_) => {
info!("no metadata found");
Err(err) => {
info!("no metadata found: {}", err);
continue
}
};