mirror of
https://codeberg.org/Mercury-IM/Smack
synced 2024-11-25 15:52:06 +01:00
Improve logging of parsing errors
This commit is contained in:
parent
65dd6c9777
commit
236dfb009d
2 changed files with 5 additions and 2 deletions
|
@ -576,7 +576,9 @@ 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, "Failed to parse extension packet in Presence packet.", e);
|
LOGGER.log(Level.WARNING,
|
||||||
|
"Failed to parse extension packet in Presence packet. Attributes: from="
|
||||||
|
+ presence.getFrom() + " id=" + presence.getStanzaId(), e);
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
|
@ -51,7 +51,8 @@ public class CapsExtensionProvider extends ExtensionElementProvider<CapsExtensio
|
||||||
if (hash != null && version != null && node != null) {
|
if (hash != null && version != null && node != null) {
|
||||||
return new CapsExtension(node, version, hash);
|
return new CapsExtension(node, version, hash);
|
||||||
} else {
|
} else {
|
||||||
throw new SmackException("Caps elment with missing attributes");
|
throw new SmackException("Caps elment with missing attributes. Attributes: hash=" + hash + " version="
|
||||||
|
+ version + " node=" + node);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue