Changed: Version Bump 0.7.0 (#952)

This commit is contained in:
Qstick 2019-09-09 08:06:49 -04:00 committed by GitHub
commit 31cb5fe523
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 14 additions and 4 deletions

View file

@ -73,7 +73,7 @@ namespace NzbDrone.Common.Instrumentation
else
{
dsn = RuntimeInfo.IsProduction
? "https://daa808e34499445fb49a0da1d38bcbbe@sentry.io/209545"
? "https://f607fb34f89745f9bfe5ded0a97ab00a@sentry.io/209545"
: "https://28faaa7023384031b29e38d3be74fa11@sentry.io/227247";
}

View file

@ -178,7 +178,7 @@ namespace NzbDrone.Core.Configuration
public bool AnalyticsEnabled => GetValueBoolean("AnalyticsEnabled", true, persist: false);
public string Branch => GetValue("Branch", "develop").ToLowerInvariant();
public string Branch => GetValue("Branch", "master").ToLowerInvariant();
public string LogLevel => GetValue("LogLevel", "info");
public string ConsoleLogLevel => GetValue("ConsoleLogLevel", string.Empty, persist: false);