From f278a0dad0ca195c092f38afa8f46fb3d7ac44e4 Mon Sep 17 00:00:00 2001 From: Flaminel Date: Wed, 17 Jun 2026 12:05:35 +0300 Subject: [PATCH] fixed log --- .../Cleanuparr.Infrastructure/Services/JobManagementService.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/backend/Cleanuparr.Infrastructure/Services/JobManagementService.cs b/code/backend/Cleanuparr.Infrastructure/Services/JobManagementService.cs index 46a6f9db..f049f269 100644 --- a/code/backend/Cleanuparr.Infrastructure/Services/JobManagementService.cs +++ b/code/backend/Cleanuparr.Infrastructure/Services/JobManagementService.cs @@ -354,7 +354,7 @@ public class JobManagementService : IJobManagementService if (nextIndex >= Constants.MalwareBlockerWebhookRetryDelays.Count) { _logger.LogDebug( - "MalwareBlocker webhook scan gave up for download {downloadId} on {type} instance {instanceId} after {attempts} attempts", + $"{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); return Task.FromResult(false); }