From b47638fa650f2cf5bd99ada64448b1ad6abccae2 Mon Sep 17 00:00:00 2001 From: Qstick Date: Mon, 7 Sep 2020 01:57:04 -0400 Subject: [PATCH] Fix Release Push log statement --- src/Lidarr.Api.V1/Indexers/ReleasePushModule.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Lidarr.Api.V1/Indexers/ReleasePushModule.cs b/src/Lidarr.Api.V1/Indexers/ReleasePushModule.cs index e8c2ade8f..2b756c1e8 100644 --- a/src/Lidarr.Api.V1/Indexers/ReleasePushModule.cs +++ b/src/Lidarr.Api.V1/Indexers/ReleasePushModule.cs @@ -85,7 +85,7 @@ namespace Lidarr.Api.V1.Indexers } catch (ModelNotFoundException) { - _logger.Debug("Push Release {0} not associated with unknown indexer {0}.", release.Title, release.IndexerId); + _logger.Debug("Push Release {0} not associated with unknown indexer {1}.", release.Title, release.IndexerId); release.IndexerId = 0; } }