Aspectacular.MethodCallLoggingExtensions.LogErrorWithKey C# (CSharp) Method

LogErrorWithKey() public static method

Adds error 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 LogErrorWithKey ( this methodLogger, string category, string format ) : void
methodLogger this
category string
format string
return void
        public static void LogErrorWithKey(this IMethodLogProvider methodLogger, string category, string format, params object[] args)
        {
            Log(methodLogger, EntryType.Error, category, format, args);
        }