Aspectacular.CallerAopLogger.Log C# (CSharp) Method

Log() protected method

Adds entry to the log held by the proxy.
protected Log ( EntryType entryType, string optionalKey, string format ) : void
entryType EntryType
optionalKey string
format string
return void
        protected void Log(EntryType entryType, string optionalKey, string format, params object[] args)
        {
            this.log.AddLogEntry(LogEntryOriginator.Caller, entryType, optionalKey, format, args);
        }