From 4ab54ee5762740806fba8ba8a0b4e7ce665accb5 Mon Sep 17 00:00:00 2001 From: Florian Stinglmayr Date: Wed, 25 Oct 2023 11:30:44 +0200 Subject: [PATCH] show Errors found by journal parser --- EliteBGS/MainWindow.xaml.cs | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/EliteBGS/MainWindow.xaml.cs b/EliteBGS/MainWindow.xaml.cs index b93d741..adc3406 100644 --- a/EliteBGS/MainWindow.xaml.cs +++ b/EliteBGS/MainWindow.xaml.cs @@ -233,6 +233,12 @@ public partial class MainWindow : MetroWindow { HandleEntries(entries, start, end); GenerateLog(); + + var errors = journal.AllErrors; + foreach (var error in errors) { + Log("An error has occured in the Journal file, please send this to CMDR Hekateh:"); + Log(error.ToString()); + } } catch (Exception exception) { Log("Something went terribly wrong while parsing the E:D player journal."); Log("Please send this to CMDR Hekateh:");