Aspectacular.CacheAspect.LogParametersWithValues C# (CSharp) Method

LogParametersWithValues() private method

private LogParametersWithValues ( ) : void
return void
        private void LogParametersWithValues()
        {
            foreach(InterceptedMethodParamMetadata paramInfo in this.Proxy.InterceptedCallMetaData.Params)
            {
                this.LogInformationWithKey("Parameter \"{0}\"".SmartFormat(paramInfo.Name),
                    "Type: [{0}], Value: [{1}]", paramInfo.Type.FormatCSharp(), paramInfo.FormatSlowEvaluatingValue(false));
            }
        }