فهرست منبع

Add warning message to collection resolution when not found

Eric Reed 12 سال پیش
والد
کامیت
4268800589
1فایلهای تغییر یافته به همراه4 افزوده شده و 0 حذف شده
  1. 4 0
      MediaBrowser.Controller/IO/FileData.cs

+ 4 - 0
MediaBrowser.Controller/IO/FileData.cs

@@ -64,6 +64,10 @@ namespace MediaBrowser.Controller.IO
 
                         dict[data.FullName] = data;
                     }
+                    else
+                    {
+                        logger.Warn("Cannot add unavailble/non-existent location {0}", data.FullName);
+                    }
                 }
                 else if (flattenFolderDepth > 0 && isDirectory)
                 {