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

Added fingerprint to sentry events to allow better grouping

pull/4/head
Keivan Beigi 8 years ago
parent e6705db743
commit bcd67dee5e

@ -74,6 +74,13 @@ namespace NzbDrone.Common.Instrumentation.Sentry
Level = LoggingLevelMap[logEvent.Level],
Message = sentryMessage,
Extra = extras,
Fingerprint =
{
logEvent.Level.ToString(),
logEvent.LoggerName,
logEvent.Message,
logEvent.Exception?.GetType().ToString()
}
};
sentryEvent.Tags.Add("os_name", Environment.GetEnvironmentVariable("OS_NAME"));

Loading…
Cancel
Save