From bc642d8f8025071cb54a053c02ee3e7835fd9a4c Mon Sep 17 00:00:00 2001 From: Flaminel Date: Thu, 27 Feb 2025 21:44:54 +0200 Subject: [PATCH] fixed typo --- .../Infrastructure/Verticals/DownloadCleaner/DownloadCleaner.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/Infrastructure/Verticals/DownloadCleaner/DownloadCleaner.cs b/code/Infrastructure/Verticals/DownloadCleaner/DownloadCleaner.cs index faa7970..18fbcb7 100644 --- a/code/Infrastructure/Verticals/DownloadCleaner/DownloadCleaner.cs +++ b/code/Infrastructure/Verticals/DownloadCleaner/DownloadCleaner.cs @@ -92,7 +92,7 @@ public sealed class DownloadCleaner : GenericHandler // release unused objects downloads = null; - _logger.LogTrace("looking for downloads clean"); + _logger.LogTrace("looking for downloads to clean"); await _downloadService.CleanDownloadsAsync(downloadsToClean, _config.Categories, _excludedHashes); }