From 7c7e78fd4e3442426eee95becd2824eef11984fa Mon Sep 17 00:00:00 2001 From: Matt Nadareski Date: Fri, 2 Apr 2021 14:23:02 -0700 Subject: [PATCH] Errors during dumping should be more verbose This should *hopefully* be a temporary change in order to determine what is failing after many dumps in a row. --- MPF/Windows/MainWindow.xaml.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/MPF/Windows/MainWindow.xaml.cs b/MPF/Windows/MainWindow.xaml.cs index e781040f..f5aa5276 100644 --- a/MPF/Windows/MainWindow.xaml.cs +++ b/MPF/Windows/MainWindow.xaml.cs @@ -676,7 +676,7 @@ namespace MPF.Windows } catch (Exception ex) { - LogOutput.ErrorLogLn(ex.Message); + LogOutput.ErrorLogLn(ex.ToString()); StatusLabel.Content = "An exception occurred!"; } finally