示例#1
0
        private void LogEntriesProviderNewLogEntryHandler(LogEntryWithOrigin logEntry)
        {
            if (!IsWatchedSeverity(logEntry.LogEntry.Severity))
            {
                return;
            }

            this.currentProvider.LastProcessedErrorDate = DateTime.Now;
            this.Display(logEntry);
        }
示例#2
0
 private void Display(LogEntryWithOrigin logEntry)
 {
     GetControl()?.Display(logEntry);
 }