added logging during app update, and IsHD

This commit is contained in:
Luke Pulverenti
2013-09-29 20:51:04 -04:00
parent cdfb009df8
commit 02ebeb0e5b
17 changed files with 60 additions and 35 deletions

View File

@@ -586,6 +586,8 @@ namespace MediaBrowser.Common.Implementations
/// <param name="newVersion">The new version.</param>
protected void OnApplicationUpdated(Version newVersion)
{
Logger.Info("Application has been updated to version {0}", newVersion);
EventHelper.QueueEventIfNotNull(ApplicationUpdated, this, new GenericEventArgs<Version> { Argument = newVersion }, Logger);
NotifyPendingRestart();