You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@servicemix.apache.org by ff...@apache.org on 2008/05/29 09:37:22 UTC

svn commit: r661241 - /servicemix/smx3/trunk/core/servicemix-core/src/main/java/org/apache/servicemix/jbi/security/auth/impl/JAASAuthenticationService.java

Author: ffang
Date: Thu May 29 00:37:22 2008
New Revision: 661241

URL: http://svn.apache.org/viewvc?rev=661241&view=rev
Log:
[SM-1367]Provide logging statements when doing authorization in SMX

Modified:
    servicemix/smx3/trunk/core/servicemix-core/src/main/java/org/apache/servicemix/jbi/security/auth/impl/JAASAuthenticationService.java

Modified: servicemix/smx3/trunk/core/servicemix-core/src/main/java/org/apache/servicemix/jbi/security/auth/impl/JAASAuthenticationService.java
URL: http://svn.apache.org/viewvc/servicemix/smx3/trunk/core/servicemix-core/src/main/java/org/apache/servicemix/jbi/security/auth/impl/JAASAuthenticationService.java?rev=661241&r1=661240&r2=661241&view=diff
==============================================================================
--- servicemix/smx3/trunk/core/servicemix-core/src/main/java/org/apache/servicemix/jbi/security/auth/impl/JAASAuthenticationService.java (original)
+++ servicemix/smx3/trunk/core/servicemix-core/src/main/java/org/apache/servicemix/jbi/security/auth/impl/JAASAuthenticationService.java Thu May 29 00:37:22 2008
@@ -65,6 +65,9 @@
             }
         });
         loginContext.login();
+        if (LOG.isDebugEnabled()) {
+            LOG.debug("Authenticating " + user + " successfully");
+        }
     }
 
 }