You are viewing a plain text version of this content. The canonical link for it is here.
Posted to server-dev@james.apache.org by no...@apache.org on 2011/11/08 20:22:37 UTC

svn commit: r1199394 - /james/protocols/trunk/smtp/src/main/java/org/apache/james/protocols/smtp/core/esmtp/AuthCmdHandler.java

Author: norman
Date: Tue Nov  8 19:22:37 2011
New Revision: 1199394

URL: http://svn.apache.org/viewvc?rev=1199394&view=rev
Log:
Log auth failures with info level. See PROTOCOLS-47

Modified:
    james/protocols/trunk/smtp/src/main/java/org/apache/james/protocols/smtp/core/esmtp/AuthCmdHandler.java

Modified: james/protocols/trunk/smtp/src/main/java/org/apache/james/protocols/smtp/core/esmtp/AuthCmdHandler.java
URL: http://svn.apache.org/viewvc/james/protocols/trunk/smtp/src/main/java/org/apache/james/protocols/smtp/core/esmtp/AuthCmdHandler.java?rev=1199394&r1=1199393&r2=1199394&view=diff
==============================================================================
--- james/protocols/trunk/smtp/src/main/java/org/apache/james/protocols/smtp/core/esmtp/AuthCmdHandler.java (original)
+++ james/protocols/trunk/smtp/src/main/java/org/apache/james/protocols/smtp/core/esmtp/AuthCmdHandler.java Tue Nov  8 19:22:37 2011
@@ -338,7 +338,7 @@ public class AuthCmdHandler
                 
                 if (res != null) {
                     if (SMTPRetCode.AUTH_FAILED.equals(res.getRetCode())) {
-                        session.getLogger().error("AUTH method "+authType+" failed");
+                        session.getLogger().info("AUTH method "+authType+" failed");
                     } else if (SMTPRetCode.AUTH_OK.equals(res.getRetCode())) {
                         if (session.getLogger().isDebugEnabled()) {
                             // TODO: Make this string a more useful debug message



---------------------------------------------------------------------
To unsubscribe, e-mail: server-dev-unsubscribe@james.apache.org
For additional commands, e-mail: server-dev-help@james.apache.org