コード例 #1
0
 protected override void Append(LoggingEvent loggingEvent)
 {
     var log = new LogEntry(loggingEvent);
     InsertLogEntry(log);
 }
コード例 #2
0
 private void InsertLogEntry(LogEntry log)
 {
     var logs = GetLogCollection();
     logs.Insert(log);
 }