1
0
Fork 0
mirror of https://codeberg.org/Mercury-IM/Smack synced 2024-11-22 14:22:05 +01:00

Improve logging of failed presence extensions

Don't log the exception for now because the stack trace makes to much
noise in the log output. This is mostly caused by Googles outdated
Entity Capabilities implementation.
This commit is contained in:
Florian Schmaus 2016-01-17 18:00:50 +01:00
parent e6a9027cc6
commit 23201d5f0f

View file

@ -578,9 +578,8 @@ public class PacketParserUtils {
try { try {
PacketParserUtils.addExtensionElement(presence, parser, elementName, namespace); PacketParserUtils.addExtensionElement(presence, parser, elementName, namespace);
} catch (Exception e) { } catch (Exception e) {
LOGGER.log(Level.WARNING, LOGGER.warning("Failed to parse extension element in Presence stanza: \"" + e + "\" from: '"
"Failed to parse extension packet in Presence packet. Attributes: from=" + presence.getFrom() + " id: '" + presence.getStanzaId() + "'");
+ presence.getFrom() + " id=" + presence.getStanzaId(), e);
} }
break; break;
} }