SPRNET-1494 - switch to DEBUG level logging for cache misses

This commit is contained in:
Steve Bohlen
2015-01-29 22:38:18 -05:00
parent 7c120e35cf
commit ac28a7a970

View File

@@ -105,10 +105,9 @@ namespace Spring.Aop.Framework.DynamicProxy
{
#region Instrumentation
if (logger.IsInfoEnabled)
if (logger.IsDebugEnabled)
{
logger.Info(String.Format(
"AOP proxy type found in cache for '{0}'.", cacheKey));
logger.DebugFormat("AOP proxy type found in cache for '{0}'.", cacheKey);
}
#endregion