Browse Source

Add warning message to collection resolution when not found

Eric Reed 12 years ago
parent
commit
4268800589
1 changed files with 4 additions and 0 deletions
  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)
                 {