aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Common.Implementations/BaseApplicationHost.cs
diff options
context:
space:
mode:
authorLuke Pulverenti <luke.pulverenti@gmail.com>2013-04-08 12:45:40 -0400
committerLuke Pulverenti <luke.pulverenti@gmail.com>2013-04-08 12:45:40 -0400
commit57f082051d15da7450fe41f293e0131c8320db33 (patch)
tree686cc8d30ffa13a9f1491b3144d37dd462d3ea91 /MediaBrowser.Common.Implementations/BaseApplicationHost.cs
parentcfe2c8f1b16d11a65e44973be2e605882de1e4d1 (diff)
tweaked http server startup
Diffstat (limited to 'MediaBrowser.Common.Implementations/BaseApplicationHost.cs')
-rw-r--r--MediaBrowser.Common.Implementations/BaseApplicationHost.cs6
1 files changed, 6 insertions, 0 deletions
diff --git a/MediaBrowser.Common.Implementations/BaseApplicationHost.cs b/MediaBrowser.Common.Implementations/BaseApplicationHost.cs
index 4b8574c89..1a2ab4a51 100644
--- a/MediaBrowser.Common.Implementations/BaseApplicationHost.cs
+++ b/MediaBrowser.Common.Implementations/BaseApplicationHost.cs
@@ -171,6 +171,7 @@ namespace MediaBrowser.Common.Implementations
Logger = LogManager.GetLogger("App");
LogManager.ReloadLogger(ConfigurationManager.CommonConfiguration.EnableDebugLevelLogging ? LogSeverity.Debug : LogSeverity.Info);
+ OnLoggerLoaded();
DiscoverTypes();
@@ -183,6 +184,11 @@ namespace MediaBrowser.Common.Implementations
await RunStartupTasks().ConfigureAwait(false);
}
+ protected virtual void OnLoggerLoaded()
+ {
+
+ }
+
/// <summary>
/// Runs the startup tasks.
/// </summary>