Remove noisy logging.

This commit is contained in:
Ben Alex 2004-11-15 02:43:21 +00:00
parent d6beb9804f
commit bc9a599bf7
1 changed files with 3 additions and 1 deletions

View File

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