Aspectacular.CallerAopLogger.LogInformationWithKey C# (CSharp) Method

LogInformationWithKey() protected method

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