Aspectacular.CallLifetimeLog.Log C# (CSharp) Method

Log() protected method

Adds log entry to AOP Proxy log in a way that makes it possible for aspect classes to access it for storing, sorting, grouping, etc.
protected Log ( EntryType entryType, string category, string format ) : void
entryType EntryType
category string
format string
return void
        protected void Log(EntryType entryType, string category, string format, params object[] args)
        {
            this.AddLogEntry(LogEntryOriginator.Proxy, entryType, category, format, args);
        }