瀏覽代碼

Remove noisy logging.

Ben Alex 21 年之前
父節點
當前提交
bc9a599bf7

+ 3 - 1
core/src/main/java/org/acegisecurity/afterinvocation/AfterInvocationProviderManager.java

@@ -117,7 +117,9 @@ public class AfterInvocationProviderManager implements AfterInvocationManager,
             AfterInvocationProvider provider = (AfterInvocationProvider) iter
                 .next();
 
-            logger.fatal("Evaluating " + attribute + " against " + provider);
+            if (logger.isDebugEnabled()) {
+                logger.debug("Evaluating " + attribute + " against " + provider);
+            }
 
             if (provider.supports(attribute)) {
                 return true;