Skip to content

Commit

Permalink
Write to log when fetching TheTVDB series fails
Browse files Browse the repository at this point in the history
  • Loading branch information
griff committed Jun 19, 2019
1 parent ca2b254 commit 8f4c92d
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions Plugins/TheTVDB/src/TheTVDBSearch.m
Original file line number Diff line number Diff line change
Expand Up @@ -178,8 +178,10 @@ - (void)fetchSeriesCompleted:(id)request;

- (void)fetchSeriesFailed:(id)request;
{
//ASIHTTPRequest* theRequest = request;
//MZLoggerDebug(@"Request failed with status code %d", [theRequest responseStatusCode]);
ASIHTTPRequest* theRequest = request;
MZLoggerDebug(@"Request failed with status code %d", [theRequest responseStatusCode]);
MZLoggerDebug(@"Request failed with data %@", [theRequest responseString]);

}

- (void)fetchSeriesBannersCompleted:(id)request;
Expand Down

0 comments on commit 8f4c92d

Please sign in to comment.