From 9f9cca9ccb9b581628cfbc8cf36df45c0dd975a2 Mon Sep 17 00:00:00 2001 From: jlewin Date: Fri, 22 Feb 2019 11:34:16 -0800 Subject: [PATCH] Restore Raygun reporting - Issue MatterHackers/MCCentral#5082 Raygun reporting remains broken in 2.19.2 --- Program.cs | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/Program.cs b/Program.cs index de0d7eea2..673366c60 100644 --- a/Program.cs +++ b/Program.cs @@ -78,6 +78,11 @@ namespace MatterHackers.MatterControl string userProfilePath = Environment.GetFolderPath(Environment.SpecialFolder.UserProfile); + _raygunClient = new RaygunClient("hQIlyUUZRGPyXVXbI6l1dA==") // this is the PC key + { + ApplicationVersion = VersionInfo.Instance.ReleaseVersion + }; + //#if IS_WINDOWS waitHandle = new EventWaitHandle(false, EventResetMode.ManualReset, "MatterControl#Startup", out bool created);