Aspectacular.CallerAopLogger.LogErrorWithKey C# (CSharp) Method

LogErrorWithKey() protected method

Shortcut for logging error entries.
protected LogErrorWithKey ( string optionalKey, string format ) : void
optionalKey string
format string
return void
        protected void LogErrorWithKey(string optionalKey, string format, params object[] args)
        {
            this.Log(EntryType.Error, optionalKey, format, args);
        }