diff options
| author | Luke <luke.pulverenti@gmail.com> | 2016-02-11 13:41:22 -0500 |
|---|---|---|
| committer | Luke <luke.pulverenti@gmail.com> | 2016-02-11 13:41:22 -0500 |
| commit | 4a1d01be030e5ffb4e367597c7beabaa4e4da887 (patch) | |
| tree | c42dfd5f233e5eafc560c5bc1a60a2edb1b574cd /MediaBrowser.Server.Startup.Common | |
| parent | 46a6194516d0445da943ead5a31b72bb25eb6663 (diff) | |
| parent | 9e8d35dadc2859d39c3daab98458fd9d1be03865 (diff) | |
Merge pull request #1441 from MediaBrowser/dev
merge from dev
Diffstat (limited to 'MediaBrowser.Server.Startup.Common')
| -rw-r--r-- | MediaBrowser.Server.Startup.Common/ApplicationHost.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/MediaBrowser.Server.Startup.Common/ApplicationHost.cs b/MediaBrowser.Server.Startup.Common/ApplicationHost.cs index b17f10af3..735748e08 100644 --- a/MediaBrowser.Server.Startup.Common/ApplicationHost.cs +++ b/MediaBrowser.Server.Startup.Common/ApplicationHost.cs @@ -692,7 +692,7 @@ namespace MediaBrowser.Server.Startup.Common private async Task<IActivityRepository> GetActivityLogRepository() { - var repo = new ActivityRepository(LogManager.GetLogger("ActivityRepository"), ServerConfigurationManager.ApplicationPaths); + var repo = new ActivityRepository(LogManager, ServerConfigurationManager.ApplicationPaths); await repo.Initialize().ConfigureAwait(false); |
