add debug logging messages

This commit is contained in:
Luke Pulverenti
2013-05-26 21:24:56 -04:00
parent cbd3de416c
commit afbd4e3b48
2 changed files with 14 additions and 1 deletions

View File

@@ -405,6 +405,7 @@ namespace MediaBrowser.Server.Implementations.Library
if (!fileInfo.Exists)
{
_logger.Error("Path in library does not exist or is unavailable: " + path);
return null;
}
@@ -437,8 +438,10 @@ namespace MediaBrowser.Server.Implementations.Library
{
var paths = args.FileSystemDictionary.Keys.ToList();
foreach (var subPath in paths.Where(subPath => paths.Any(i => subPath.StartsWith(i.TrimEnd(System.IO.Path.DirectorySeparatorChar) + System.IO.Path.DirectorySeparatorChar, StringComparison.OrdinalIgnoreCase))))
foreach (var subPath in paths
.Where(subPath => !subPath.EndsWith(":\\", StringComparison.OrdinalIgnoreCase) && paths.Any(i => subPath.StartsWith(i.TrimEnd(Path.DirectorySeparatorChar) + Path.DirectorySeparatorChar, StringComparison.OrdinalIgnoreCase))))
{
_logger.Info("Ignoring duplicate path: {0}", subPath);
args.FileSystemDictionary.Remove(subPath);
}
}