#680 - added auto organize page

This commit is contained in:
Luke Pulverenti
2014-01-21 01:10:58 -05:00
parent 92c76de2ba
commit 1235283279
16 changed files with 541 additions and 32 deletions

View File

@@ -117,9 +117,13 @@ namespace MediaBrowser.ServerApplication.FFMpeg
ExtractFFMpeg(tempFile, Path.GetDirectoryName(info.Path));
return;
}
catch (HttpException)
catch (HttpException ex)
{
_logger.ErrorException("Error downloading {0}", ex, url);
}
catch (Exception ex)
{
_logger.ErrorException("Error unpacking {0}", ex, url);
}
}