diff --git a/code/backend/Cleanuparr.Infrastructure/Features/Arr/LazyLibrarianClient.cs b/code/backend/Cleanuparr.Infrastructure/Features/Arr/LazyLibrarianClient.cs index f0b1771a..b6e51459 100644 --- a/code/backend/Cleanuparr.Infrastructure/Features/Arr/LazyLibrarianClient.cs +++ b/code/backend/Cleanuparr.Infrastructure/Features/Arr/LazyLibrarianClient.cs @@ -45,7 +45,7 @@ public sealed class LazyLibrarianClient : ArrClient, ILazyLibrarianClient } catch { - _logger.LogError("queue list failed | {uri}", uri); + _logger.LogError("queue list failed | {url}", arrInstance.Url); throw; } @@ -53,7 +53,7 @@ public sealed class LazyLibrarianClient : ArrClient, ILazyLibrarianClient if (rows is null) { - throw new Exception($"unrecognized queue list response | {uri}"); + throw new Exception($"unrecognized queue list response | {arrInstance.Url}"); } List records = new(); @@ -134,7 +134,7 @@ public sealed class LazyLibrarianClient : ArrClient, ILazyLibrarianClient } catch { - _logger.LogError("queue delete failed | {uri} | {title}", uri, record.Title); + _logger.LogError("queue delete failed | {url} | {title}", arrInstance.Url, record.Title); throw; } }