This commit is contained in:
Felix Glang
2024-04-28 13:21:48 +02:00
parent 0bb480b1d0
commit c788e0ed76

View File

@@ -61,7 +61,7 @@ public class ReadarrClient : ArrClientBase
// TODO add caching here // TODO add caching here
_logger.LogInformation( _logger.LogInformation(
$"Fetching all books from authorId {authorId} from Readarr: {UrlUtilities.RedactApiKey(readarrBookUrl)}"); $"Fetching all books from authorId {authorId} from Readarr ({InstanceName}) : {UrlUtilities.RedactApiKey(readarrBookUrl)}");
var bookApiResponse = await httpClient.GetStringAsync(readarrBookUrl); var bookApiResponse = await httpClient.GetStringAsync(readarrBookUrl);
var books = JsonConvert.DeserializeObject<List<dynamic>>(bookApiResponse); var books = JsonConvert.DeserializeObject<List<dynamic>>(bookApiResponse);