diff --git a/src/Exceptron.Client/ExceptronClient.cs b/src/Exceptron.Client/ExceptronClient.cs index 89ac5170f..0deae5732 100644 --- a/src/Exceptron.Client/ExceptronClient.cs +++ b/src/Exceptron.Client/ExceptronClient.cs @@ -161,7 +161,7 @@ namespace Exceptron.Client if (Configuration.ThrowExceptions) { - throw; + //throw; } return new ExceptionResponse { Exception = e }; diff --git a/src/NzbDrone.Common/Instrumentation/ExceptronTarget.cs b/src/NzbDrone.Common/Instrumentation/ExceptronTarget.cs index 09efb03e3..d3e56c113 100644 --- a/src/NzbDrone.Common/Instrumentation/ExceptronTarget.cs +++ b/src/NzbDrone.Common/Instrumentation/ExceptronTarget.cs @@ -26,13 +26,13 @@ namespace NzbDrone.Common.Instrumentation { var config = new ExceptronConfiguration { - ApiKey = "57cb75d9eb2d457094d3f67133833eef", + ApiKey = "d64e0a72845d495abc625af3a27cf5f5", IncludeMachineName = true, }; if (RuntimeInfoBase.IsProduction) { - config.ApiKey = "cc4728a35aa9414f9a0baa8eed56bc67"; + config.ApiKey = "82c0f66dd2d64d1480cc88b551c9bdd8"; } ExceptronClient = new ExceptronClient(config, BuildInfo.Version); @@ -86,7 +86,6 @@ namespace NzbDrone.Common.Instrumentation catch (Exception e) { InternalLogger.Warn("Unable to report exception. {0}", e); - throw; } } } diff --git a/src/NzbDrone.Common/Instrumentation/LogTargets.cs b/src/NzbDrone.Common/Instrumentation/LogTargets.cs index 382c09b5c..271b449c4 100644 --- a/src/NzbDrone.Common/Instrumentation/LogTargets.cs +++ b/src/NzbDrone.Common/Instrumentation/LogTargets.cs @@ -23,7 +23,7 @@ namespace NzbDrone.Common.Instrumentation } //Disabling for now - until its fixed or we yank it out - //RegisterExceptron(); + RegisterExceptron(); if (updateApp) {