diff options
| author | Luke <luke.pulverenti@gmail.com> | 2016-06-29 21:32:20 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2016-06-29 21:32:20 -0400 |
| commit | 808ff8f05477d8a9871ee15bf6070737c810eceb (patch) | |
| tree | beb198911efb4f79f0e48dba20a419c4942fe00d /MediaBrowser.Server.Startup.Common/ApplicationHost.cs | |
| parent | 07ef2479eb6f1943c500976f02637fb71d08b0db (diff) | |
| parent | e74160596df9c47c11baa29e2f6d8ee1eae7f9d4 (diff) | |
Merge pull request #1893 from MediaBrowser/dev
Dev
Diffstat (limited to 'MediaBrowser.Server.Startup.Common/ApplicationHost.cs')
| -rw-r--r-- | MediaBrowser.Server.Startup.Common/ApplicationHost.cs | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/MediaBrowser.Server.Startup.Common/ApplicationHost.cs b/MediaBrowser.Server.Startup.Common/ApplicationHost.cs index 4534677ca..651b0e01f 100644 --- a/MediaBrowser.Server.Startup.Common/ApplicationHost.cs +++ b/MediaBrowser.Server.Startup.Common/ApplicationHost.cs @@ -335,6 +335,7 @@ namespace MediaBrowser.Server.Startup.Common foreach (var entryPoint in GetExports<IServerEntryPoint>().ToList()) { var name = entryPoint.GetType().FullName; + Logger.Info("Starting entry point {0}", name); try { entryPoint.Run(); @@ -343,8 +344,9 @@ namespace MediaBrowser.Server.Startup.Common { Logger.ErrorException("Error in {0}", ex, name); } + Logger.Info("Entry point completed: {0}", name); } - Logger.Info("Entry points complete"); + Logger.Info("All entry points have started"); LogManager.RemoveConsoleOutput(); } |
