Use unused return value: On glob() error, print error msg

This commit is contained in:
Matthias Beyer 2016-01-05 16:38:55 +01:00
parent fb15a57a88
commit 20dfd661d4

View file

@ -327,7 +327,12 @@ impl Store {
});
}
}
});
})
.map_err(|e| {
error!("Could not glob: '{}'", globstr);
debug!("Could not glob(): {:?}", e);
})
.ok();
res
}