protected override void Append(LoggingEvent loggingEvent)
 {
     var log = new LogEntry(loggingEvent);
     InsertLogEntry(log);
 }
 private void InsertLogEntry(LogEntry log)
 {
     var logs = GetLogCollection();
     logs.Insert(log);
 }