From c788e0ed76c1c5b01cf71a53c86bd70a67b0ad51 Mon Sep 17 00:00:00 2001 From: Felix Glang Date: Sun, 28 Apr 2024 13:21:48 +0200 Subject: [PATCH] Fix Log --- UmlautAdaptarr/Providers/ReadarrClient.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/UmlautAdaptarr/Providers/ReadarrClient.cs b/UmlautAdaptarr/Providers/ReadarrClient.cs index e29db88..55a7493 100644 --- a/UmlautAdaptarr/Providers/ReadarrClient.cs +++ b/UmlautAdaptarr/Providers/ReadarrClient.cs @@ -61,7 +61,7 @@ public class ReadarrClient : ArrClientBase // TODO add caching here _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 books = JsonConvert.DeserializeObject>(bookApiResponse);