1
0
Fork 0
mirror of https://github.com/lidarr/Lidarr synced 2025-03-14 15:58:48 +00:00

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

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