From fc010a5ea026c6b0d23dd548ca1b8605e83c5fc6 Mon Sep 17 00:00:00 2001 From: bakerboy448 <55419169+bakerboy448@users.noreply.github.com> Date: Sat, 4 Feb 2023 02:06:59 -0600 Subject: [PATCH] New: Improve Manual Import logging when not parsing files (cherry picked from commit 83f63590630ae0728fd9f9f03567a294934eebcc) --- .../MediaFiles/TrackImport/Manual/ManualImportService.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/NzbDrone.Core/MediaFiles/TrackImport/Manual/ManualImportService.cs b/src/NzbDrone.Core/MediaFiles/TrackImport/Manual/ManualImportService.cs index 1f90b7904..912bd4a9d 100644 --- a/src/NzbDrone.Core/MediaFiles/TrackImport/Manual/ManualImportService.cs +++ b/src/NzbDrone.Core/MediaFiles/TrackImport/Manual/ManualImportService.cs @@ -170,6 +170,7 @@ private List ProcessFolder(string folder, string downloadId, A if (artist == null && artistFiles.Count > 100) { + _logger.Warn("Unable to determine artist from folder name and found more than 100 files. Skipping parsing"); return ProcessDownloadDirectory(folder, artistFiles); }