mirror of
https://github.com/Sonarr/Sonarr
synced 2026-01-27 01:42:27 +01:00
Print version response from XBMC in logs
This commit is contained in:
parent
f40a5eb9e9
commit
9c0fb34864
1 changed files with 1 additions and 1 deletions
|
|
@ -61,7 +61,7 @@ public XbmcVersion GetJsonVersion(XbmcSettings settings)
|
|||
|
||||
var response = _httpProvider.PostCommand(settings.Address, settings.Username, settings.Password, postJson.ToString());
|
||||
|
||||
Logger.Debug("Getting version from response");
|
||||
Logger.Debug("Getting version from response: " + response);
|
||||
var result = Json.Deserialize<XbmcJsonResult<JObject>>(response);
|
||||
|
||||
var versionObject = result.Result.Property("version");
|
||||
|
|
|
|||
Loading…
Reference in a new issue