Skip to content

Commit 05de415

Browse files
committed
Fixed log messages
1 parent 8385a90 commit 05de415

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Source/Platforms/Wpf/ExceptionlessClientExtensions.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ public static void RegisterApplicationThreadExceptionHandler(this ExceptionlessC
2323
System.Windows.Forms.Application.ThreadException -= _onApplicationThreadException;
2424
System.Windows.Forms.Application.ThreadException += _onApplicationThreadException;
2525
} catch (Exception ex) {
26-
client.Configuration.Resolver.GetLog().Error(typeof(ExceptionlessClientExtensions), ex, "An error occurred while wiring up to the unobserved task exception event.");
26+
client.Configuration.Resolver.GetLog().Error(typeof(ExceptionlessClientExtensions), ex, "An error occurred while wiring up to the application thread exception event.");
2727
}
2828
}
2929

@@ -55,7 +55,7 @@ public static void RegisterApplicationDispatcherUnhandledExceptionHandler(this E
5555
System.Windows.Application.Current.DispatcherUnhandledException -= _onApplicationDispatcherUnhandledException;
5656
System.Windows.Application.Current.DispatcherUnhandledException += _onApplicationDispatcherUnhandledException;
5757
} catch (Exception ex) {
58-
client.Configuration.Resolver.GetLog().Error(typeof(ExceptionlessClientExtensions), ex, "An error occurred while wiring up to the unobserved task exception event.");
58+
client.Configuration.Resolver.GetLog().Error(typeof(ExceptionlessClientExtensions), ex, "An error occurred while wiring up to the application dispatcher exception event.");
5959
}
6060
}
6161

0 commit comments

Comments
 (0)