text_reader: remove excess log statement

This commit is contained in:
Matt Bilker 2019-05-10 22:47:31 +00:00
parent b3337ce3d4
commit b1b651aa11
No known key found for this signature in database
GPG Key ID: 69ADF8AEB6C8B5D1

View File

@ -211,7 +211,6 @@ impl<'a> TextXmlReader<'a> {
Ok(Event::Eof) => break,
Ok(_) => {},
Err(e) => {
eprintln!("event error: {:?}", e);
return Err(e.context(KbinErrorKind::InvalidState).into())
},
};