Fix wording in debug message
This commit is contained in:
parent
915cbd24ef
commit
e31239b02b
1 changed files with 1 additions and 1 deletions
|
@ -185,7 +185,7 @@ impl StorageBackend {
|
||||||
if let Ok(mut fs) = FSFile::open(self.build_filepath_with_id(m, id.clone())) {
|
if let Ok(mut fs) = FSFile::open(self.build_filepath_with_id(m, id.clone())) {
|
||||||
let mut s = String::new();
|
let mut s = String::new();
|
||||||
fs.read_to_string(&mut s);
|
fs.read_to_string(&mut s);
|
||||||
debug!("Success reading file with id '{}'", id);
|
debug!("Success opening file with id '{}'", id);
|
||||||
debug!("Parsing to internal structure now");
|
debug!("Parsing to internal structure now");
|
||||||
p.read(s).and_then(|(h, d)| Ok(File::from_parser_result(m, id.clone(), h, d))).ok()
|
p.read(s).and_then(|(h, d)| Ok(File::from_parser_result(m, id.clone(), h, d))).ok()
|
||||||
} else {
|
} else {
|
||||||
|
|
Loading…
Reference in a new issue