Fix wording in debug message

This commit is contained in:
Matthias Beyer 2015-12-03 18:09:56 +01:00
parent 915cbd24ef
commit e31239b02b

View file

@ -185,7 +185,7 @@ impl StorageBackend {
if let Ok(mut fs) = FSFile::open(self.build_filepath_with_id(m, id.clone())) {
let mut s = String::new();
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");
p.read(s).and_then(|(h, d)| Ok(File::from_parser_result(m, id.clone(), h, d))).ok()
} else {