indexer: Turn error into warning
This commit is contained in:
parent
1f8bd0ef9a
commit
97d15020f7
1 changed files with 1 additions and 1 deletions
|
|
@ -121,7 +121,7 @@ fn insert_man_row<T: postgres::GenericClient>(tr: &mut T, verid: i32, path: &str
|
||||||
|
|
||||||
fn insert_man<T: postgres::GenericClient>(tr: &mut T, verid: i32, paths: &[&str], ent: &mut dyn Read) {
|
fn insert_man<T: postgres::GenericClient>(tr: &mut T, verid: i32, paths: &[&str], ent: &mut dyn Read) {
|
||||||
let (dig, enc, mut cont) = match man::decode(paths, ent) {
|
let (dig, enc, mut cont) = match man::decode(paths, ent) {
|
||||||
Err(e) => { error!("Error decoding {}: {}", paths[0], e); return },
|
Err(e) => { warn!("Error decoding {}: {}", paths[0], e); return },
|
||||||
Ok(x) => x,
|
Ok(x) => x,
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue