Removed Nyaa Integration tests and increased logging detail during integration tests.

This commit is contained in:
Taloth Saldono 2019-07-09 21:46:10 +01:00 committed by ta264
parent 59b40bd032
commit 84f707c51b
3 changed files with 7 additions and 34 deletions

View file

@ -18,6 +18,7 @@ namespace Lidarr.Api.V1.Config
public string Username { get; set; }
public string Password { get; set; }
public string LogLevel { get; set; }
public string ConsoleLogLevel { get; set; }
public string Branch { get; set; }
public string ApiKey { get; set; }
public string SslCertHash { get; set; }
@ -55,6 +56,7 @@ namespace Lidarr.Api.V1.Config
//Username
//Password
LogLevel = model.LogLevel,
ConsoleLogLevel = model.ConsoleLogLevel,
Branch = model.Branch,
ApiKey = model.ApiKey,
SslCertHash = model.SslCertHash,