Commit b12cc6b7 authored by Gaston Dombiak's avatar Gaston Dombiak Committed by gato

Modified logging of javax.security.sasl.SaslException to be logged in...

Modified logging of javax.security.sasl.SaslException to be logged in debug.log instead of warn.log.

git-svn-id: http://svn.igniterealtime.org/svn/repos/wildfire/trunk@4814 b35dd754-fafc-0310-a699-88a17e54d16e
parent 889b346b
...@@ -262,7 +262,7 @@ public class SASLAuthentication { ...@@ -262,7 +262,7 @@ public class SASLAuthentication {
} }
} }
catch (SaslException e) { catch (SaslException e) {
Log.warn("SaslException", e); Log.debug("SaslException", e);
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