2
0
Ben Alex 21 жил өмнө
parent
commit
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;