Commit 70fa23c3 authored by Florian Schmaus's avatar Florian Schmaus Committed by flow

IQRouter: Log xml in case of processing iq answer error

git-svn-id: http://svn.igniterealtime.org/svn/repos/openfire/trunk@13523 b35dd754-fafc-0310-a699-88a17e54d16e
parent fecfec04
......@@ -310,7 +310,9 @@ public class IQRouter extends BasicModule {
iqResultListener.receivedAnswer(packet);
}
catch (Exception e) {
Log.error("Error processing answer of remote entity", e);
Log.error(
"Error processing answer of remote entity. Answer: "
+ packet.toXML(), e);
}
return;
}
......
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