Merge pull request #1775 from MediaBrowser/dev

add startup logging
This commit is contained in:
Luke 2016-05-24 14:03:30 -04:00
commit fa0a2039ae

View File

@ -252,7 +252,15 @@ namespace MediaBrowser.Common.Implementations
var innerProgress = new ActionableProgress<double>();
innerProgress.RegisterAction(p => progress.Report(.8 * p + 15));
try
{
await RegisterResources(innerProgress).ConfigureAwait(false);
}
catch (Exception ex)
{
Logger.ErrorException("Error in RegisterResource", ex);
throw;
}
FindParts();
progress.Report(95);