From 494dcc127a4c5732b1f9249792430be8172d55c5 Mon Sep 17 00:00:00 2001 From: Chris Cameron Date: Tue, 31 Oct 2017 06:58:35 -0400 Subject: [PATCH] Better log message --- ICD.Common.Utils/ThreadingUtils.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ICD.Common.Utils/ThreadingUtils.cs b/ICD.Common.Utils/ThreadingUtils.cs index 34dad6e..8bb7b10 100644 --- a/ICD.Common.Utils/ThreadingUtils.cs +++ b/ICD.Common.Utils/ThreadingUtils.cs @@ -69,7 +69,7 @@ namespace ICD.Common.Utils catch (Exception e) { ServiceProvider.TryGetService() - .AddEntry(eSeverity.Error, e, e.Message); + .AddEntry(eSeverity.Error, e, "{0} failed to execute callback", typeof(ThreadingUtils).Name); } }; }