Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Radarr/commit/1301dc1b7bff2f794d15d892da41c969302257d6 You should set ROOT_URL correctly, otherwise the web may not work correctly.

All exception levels are now reported.

pull/3113/head
kay.one 13 years ago
parent 6a9321b22d
commit 1301dc1b7b

@ -11,8 +11,7 @@ namespace NzbDrone.Common
protected override void Write(LogEventInfo logEvent)
{
if (logEvent == null || logEvent.Exception == null) return;
if (Debugger.IsAttached || Process.GetCurrentProcess().ProcessName.Contains("JetBrains")) return;
if (logEvent == null || logEvent.Exception == null || !EnviromentProvider.IsProduction) return;
Logger.Trace("Sending Exception to Exceptioneer. Process Name: {0}", Process.GetCurrentProcess().ProcessName);

@ -97,7 +97,7 @@ namespace NzbDrone.Common
{
var exTarget = new ExceptioneerTarget();
LogManager.Configuration.AddTarget("Exceptioneer", exTarget);
LogManager.Configuration.LoggingRules.Add(new LoggingRule("*", LogLevel.Error, exTarget));
LogManager.Configuration.LoggingRules.Add(new LoggingRule("*", LogLevel.Trace, exTarget));
LogManager.ConfigurationReloaded += (sender, args) => RegisterExceptioneer();
}

Loading…
Cancel
Save