lol, exception was thrown in unhandled exception handler.

This commit is contained in:
morkt 2015-11-19 11:32:34 +04:00
parent 16670c872f
commit e23c5ceafc

View File

@ -56,7 +56,7 @@ namespace GARbro.GUI
Trace.WriteLine ("ApplicationStartup --------------------------------", "GARbro.GUI.App");
this.DispatcherUnhandledException += (s, args) =>
{
Trace.WriteLine (string.Format ("Unhandled exception caught: {1}", args.Exception.Message),
Trace.WriteLine (string.Format ("Unhandled exception caught: {0}", args.Exception.Message),
"GARbro.GUI.App");
Trace.WriteLine (args.Exception.StackTrace, "Stack trace");
};