diff options
| author | Luke Pulverenti <luke.pulverenti@gmail.com> | 2015-11-08 22:42:54 -0500 |
|---|---|---|
| committer | Luke Pulverenti <luke.pulverenti@gmail.com> | 2015-11-08 22:42:54 -0500 |
| commit | 7d7f9d765405e9b35675d6a8367eb46e852a6f2a (patch) | |
| tree | 3405a2c9ca83bd05f444381a3d2926f36601dbf9 | |
| parent | f9e9f5bef625bd994ae6a3f9356e958d228dc43d (diff) | |
update startup
| -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 2f098aad0..fd65b8729 100644 --- a/MediaBrowser.Server.Startup.Common/ApplicationHost.cs +++ b/MediaBrowser.Server.Startup.Common/ApplicationHost.cs @@ -688,7 +688,7 @@ namespace MediaBrowser.Server.Startup.Common private async Task<ISyncRepository> GetSyncRepository() { - var repo = new SyncRepository(LogManager.GetLogger("SyncRepository"), ServerConfigurationManager.ApplicationPaths, JsonSerializer); + var repo = new SyncRepository(LogManager, JsonSerializer, ServerConfigurationManager.ApplicationPaths); await repo.Initialize().ConfigureAwait(false); |
