Commit 7ee0ba4d authored by Armando Jagucki's avatar Armando Jagucki Committed by ajagucki

Log a debug level report if the ClearspaceMUCEventDelegate rejected a...

Log a debug level report if the ClearspaceMUCEventDelegate rejected a join-room request because it did not receive a reply from the CS component.

git-svn-id: http://svn.igniterealtime.org/svn/repos/openfire/trunk@10336 b35dd754-fafc-0310-a699-88a17e54d16e
parent 52bfdc80
......@@ -110,6 +110,10 @@ public class ClearspaceMUCEventDelegate extends MUCEventDelegate {
IQ result = ClearspaceManager.getInstance().query(query, 15000);
if (result == null) {
// No answer was received, assume false for security reasons.
if (Log.isDebugEnabled()) {
Log.debug("No answer from Clearspace on join-check in ClearspaceMUCEventDelegate. User: "
+ userjid.toBareJID() + " Room: " + room.getJID().toBareJID());
}
return false;
}
......
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