From d54ccd49e4f5d2f6eef01becd8ce85ecb2a1736f Mon Sep 17 00:00:00 2001 From: Benjamin Popp Date: Sat, 6 Feb 2021 17:35:58 -0600 Subject: [PATCH] Include current date/time in crash log info --- src/HexManiac.WPF/Windows/MainWindow.xaml.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/HexManiac.WPF/Windows/MainWindow.xaml.cs b/src/HexManiac.WPF/Windows/MainWindow.xaml.cs index c5c5818a..20f48bee 100644 --- a/src/HexManiac.WPF/Windows/MainWindow.xaml.cs +++ b/src/HexManiac.WPF/Windows/MainWindow.xaml.cs @@ -75,6 +75,7 @@ namespace HavenSoft.HexManiac.WPF.Windows { #else text.AppendLine("Release Version"); #endif + text.AppendLine(DateTime.Now.ToString()); text.AppendLine(e.Exception.GetType().ToString()); text.AppendLine(e.Exception.Message); text.AppendLine(e.Exception.StackTrace);