Exemple #1
0
 internal override void TryLog(LogData logData)
 {
     try
     {
         ProcessingQueue.TryAdd(logData);
     }
     catch (Exception ex)
     {
         Logger.Error($"Addition of logEntries to queue on processing is impossible. Likely processing thread doesn't working. {ex.GetType()}:{ex.Message}");
     }
 }