diff --git a/src/StructuredLogViewer/MainWindow.xaml.cs b/src/StructuredLogViewer/MainWindow.xaml.cs index 1d8f8407..087cf221 100644 --- a/src/StructuredLogViewer/MainWindow.xaml.cs +++ b/src/StructuredLogViewer/MainWindow.xaml.cs @@ -100,6 +100,13 @@ private bool ShouldIgnore(Exception exception) return true; } } + else if (exception is FileNotFoundException) + { + if (toString.Contains(".betaId")) + { + return true; + } + } return false; }