From 8c2fa93509ac4cb0c564fda3d7a3b7c3d92a2451 Mon Sep 17 00:00:00 2001 From: Qstick Date: Sat, 4 Jun 2022 18:07:11 -0500 Subject: [PATCH] New: Log path when adding artist Fixes #1603 --- src/NzbDrone.Core/Music/Services/AddArtistService.cs | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/src/NzbDrone.Core/Music/Services/AddArtistService.cs b/src/NzbDrone.Core/Music/Services/AddArtistService.cs index ef135d68b..20261afb2 100644 --- a/src/NzbDrone.Core/Music/Services/AddArtistService.cs +++ b/src/NzbDrone.Core/Music/Services/AddArtistService.cs @@ -70,6 +70,15 @@ namespace NzbDrone.Core.Music foreach (var s in newArtists) { + if (s.Path.IsNullOrWhiteSpace()) + { + _logger.Info("Adding Artist {0} Root Folder Path: [{1}]", s, s.RootFolderPath); + } + else + { + _logger.Info("Adding Artist {0} Path: [{1}]", s, s.Path); + } + try { var artist = AddSkyhookData(s);