New: Log path when adding artist

Fixes #1603
This commit is contained in:
Qstick 2022-06-04 18:07:11 -05:00
parent 423b489cf8
commit 8c2fa93509
1 changed files with 9 additions and 0 deletions

View File

@ -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);