소스 검색

Remove noisy logging.

Ben Alex 21 년 전
부모
커밋
bc9a599bf7
1개의 변경된 파일3개의 추가작업 그리고 1개의 파일을 삭제
  1. 3 1
      core/src/main/java/org/acegisecurity/afterinvocation/AfterInvocationProviderManager.java

+ 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;