public LogEvent GetUnhandledLog()
 {
     lock (_lock)
     {
         return(AllLogs.First(x => !x.IsHandled));
     }
 }