From 9eebeed9900e2b0a63c880b282ad910eb9ac3f9d Mon Sep 17 00:00:00 2001 From: Flaminel Date: Wed, 17 Jun 2026 15:46:32 +0300 Subject: [PATCH] fixed log again --- .../Services/JobManagementService.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/code/backend/Cleanuparr.Infrastructure/Services/JobManagementService.cs b/code/backend/Cleanuparr.Infrastructure/Services/JobManagementService.cs index f049f269..e71db52c 100644 --- a/code/backend/Cleanuparr.Infrastructure/Services/JobManagementService.cs +++ b/code/backend/Cleanuparr.Infrastructure/Services/JobManagementService.cs @@ -354,8 +354,8 @@ public class JobManagementService : IJobManagementService if (nextIndex >= Constants.MalwareBlockerWebhookRetryDelays.Count) { _logger.LogDebug( - $"{nameof(JobType.MalwareBlocker)} webhook scan gave up for download {target.DownloadId} on {target.Type} instance {target.InstanceId} after {target.RetryIndex} attempts", - target.DownloadId, target.Type, target.InstanceId, Constants.MalwareBlockerWebhookRetryDelays.Count); + "{name} webhook scan gave up for download {downloadId} on {type} instance {instanceId} after {attemptCount} attempts", + nameof(JobType.MalwareBlocker), target.DownloadId, target.Type, target.InstanceId, Constants.MalwareBlockerWebhookRetryDelays.Count); return Task.FromResult(false); }