protected void RaiseOnError(OnErrorExportSharedBufferEventArgs args)
 {
     OnErrorEvent?.Invoke(args);
 }
Esempio n. 2
0
 private static void OnErrorExportData(OnErrorExportSharedBufferEventArgs e)
 {
     Console.WriteLine($"Log name: {e?.Exception?.Settings?.Name ?? "Unknown"}\n" +
                       $"Error info: {e.Exception.ToString()}");
 }