Remove noisy logging.
This commit is contained in:
parent
d6beb9804f
commit
bc9a599bf7
|
@ -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;
|
||||
|
|
Loading…
Reference in New Issue