Commit 6948aabd authored by guus's avatar guus

Replace logging output from Packet#toString() to Packet#toXML()

git-svn-id: http://svn.igniterealtime.org/svn/repos/openfire/trunk@10305 b35dd754-fafc-0310-a699-88a17e54d16e
parent ebc58ea5
...@@ -558,7 +558,7 @@ public class LocalOutgoingServerSession extends LocalSession implements Outgoing ...@@ -558,7 +558,7 @@ public class LocalOutgoingServerSession extends LocalSession implements Outgoing
try { try {
if (packet instanceof IQ) { if (packet instanceof IQ) {
if (((IQ) packet).isResponse()) { if (((IQ) packet).isResponse()) {
Log.debug("XMPP specs forbid us to respond with an IQ error to: " + packet); Log.debug("XMPP specs forbid us to respond with an IQ error to: " + packet.toXML());
return; return;
} }
IQ reply = new IQ(); IQ reply = new IQ();
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment