mirror of
https://github.com/vanitasvitae/Smack.git
synced 2024-11-17 17:52:06 +01:00
[tcp] Log XmlStringBuilder NPEs and the causing class
This commit is contained in:
parent
5bd247c3e6
commit
018cba7f4f
1 changed files with 6 additions and 1 deletions
|
@ -1318,7 +1318,12 @@ public class XMPPTCPConnection extends AbstractXMPPConnection {
|
|||
|
||||
CharSequence elementXml = element.toXML(outgoingStreamXmlEnvironment);
|
||||
if (elementXml instanceof XmlStringBuilder) {
|
||||
((XmlStringBuilder) elementXml).write(writer, outgoingStreamXmlEnvironment);
|
||||
try {
|
||||
((XmlStringBuilder) elementXml).write(writer, outgoingStreamXmlEnvironment);
|
||||
} catch (NullPointerException npe) {
|
||||
LOGGER.log(Level.FINE, "NPE in XmlStringBuilder of " + element.getClass() + ": " + element, npe);
|
||||
throw npe;
|
||||
}
|
||||
}
|
||||
else {
|
||||
writer.write(elementXml.toString());
|
||||
|
|
Loading…
Reference in a new issue