Commit 472d093a authored by guus's avatar guus

Changing log level and message of failed login attempt (JM-1365)

git-svn-id: http://svn.igniterealtime.org/svn/repos/openfire/trunk@10395 b35dd754-fafc-0310-a699-88a17e54d16e
parent 5f3030b2
...@@ -242,7 +242,7 @@ public class SASLAuthentication { ...@@ -242,7 +242,7 @@ public class SASLAuthentication {
session.setSessionData("SaslServer", ss); session.setSessionData("SaslServer", ss);
} }
catch (SaslException e) { catch (SaslException e) {
Log.warn("SaslException", e); Log.info("User Login Failed. " + e.getMessage());
authenticationFailed(session); authenticationFailed(session);
status = Status.failed; status = Status.failed;
} }
......
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