From e23c5ceafc989e31daecadae8889e4e9de31927d Mon Sep 17 00:00:00 2001 From: morkt Date: Thu, 19 Nov 2015 11:32:34 +0400 Subject: [PATCH] lol, exception was thrown in unhandled exception handler. --- App.xaml.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/App.xaml.cs b/App.xaml.cs index d36c3def..3979f81a 100644 --- a/App.xaml.cs +++ b/App.xaml.cs @@ -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"); };