Exemple #1
0
 private void endReadAll(ILogAnalyzer a)
 {
     try {
         a.EndReadAll();
     }
     catch (Exception exc) {
         Reports.Add(new StatusReport {
             Source     = a.GetType(),
             Message    = $"ILogAnalyzer {a.GetType()} threw an exception during EndReadAll(). {exc.Message}",
             ReportType = ReportType.Warning
         });
     }
 }