Added additional logging to XBMC Provider, to trace failure to update library.

This commit is contained in:
Mark McDowall 2011-09-26 17:17:41 -07:00
commit b239e28898
2 changed files with 17 additions and 0 deletions

View file

@ -70,6 +70,8 @@ namespace NzbDrone.Core.Providers.Core
{
address += "/jsonrpc";
Logger.Trace("Posting command: {0}, to {1}", command, address);
byte[] byteArray = Encoding.ASCII.GetBytes(command);
var request = WebRequest.Create(address);