XmlPullStreamDecoder: added some log messages.

This commit is contained in:
Ryszard Wiśniewski 2010-04-01 15:16:33 +02:00
parent 453d5d1751
commit f4a5e7f910

View File

@ -51,9 +51,9 @@ public class XmlPullStreamDecoder implements ResStreamDecoder {
in.close();
out.close();
} catch (XmlPullParserException ex) {
LOGGER.log(Level.SEVERE, null, ex);
LOGGER.log(Level.SEVERE, "Could not decode XML", ex);
} catch (IOException ex) {
LOGGER.log(Level.SEVERE, null, ex);
LOGGER.log(Level.SEVERE, "Could not decode XML", ex);
}
}