浏览代码

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