Aspectacular.MethodCallLoggingExtensions.LogInformationWithKey C# (CSharp) Method

LogInformationWithKey() public static method

Adds information log entry to AOP Proxy log in a way that makes it possible for aspect classes to access it for storing, sorting, grouping, etc.
public static LogInformationWithKey ( this methodLogger, string category, string format ) : void
methodLogger this
category string
format string
return void
        public static void LogInformationWithKey(this IMethodLogProvider methodLogger, string category, string format, params object[] args)
        {
            Log(methodLogger, EntryType.Info, category, format, args);
        }