Include current date/time in crash log info

This commit is contained in:
Benjamin Popp 2021-02-06 17:35:58 -06:00
parent b313692c1d
commit d54ccd49e4

View File

@ -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);