diff --git a/Emby.Server.Implementations/ApplicationHost.cs b/Emby.Server.Implementations/ApplicationHost.cs
index 78b65e798d..d51e74a4de 100644
--- a/Emby.Server.Implementations/ApplicationHost.cs
+++ b/Emby.Server.Implementations/ApplicationHost.cs
@@ -165,11 +165,6 @@ namespace Emby.Server.Implementations
///
public bool IsShuttingDown { get; private set; }
- ///
- /// Gets the logger factory.
- ///
- protected ILoggerFactory LoggerFactory { get; }
-
///
/// Gets the logger.
///
@@ -183,6 +178,11 @@ namespace Emby.Server.Implementations
/// The plugins.
public IReadOnlyList Plugins => _plugins;
+ ///
+ /// Gets the logger factory.
+ ///
+ protected ILoggerFactory LoggerFactory { get; }
+
///
/// Gets or sets the application paths.
///
@@ -378,9 +378,10 @@ namespace Emby.Server.Implementations
LoggerFactory = loggerFactory;
FileSystemManager = fileSystem;
- Logger = LoggerFactory.CreateLogger("App");
ConfigurationManager = new ServerConfigurationManager(ApplicationPaths, LoggerFactory, XmlSerializer, FileSystemManager);
+ Logger = LoggerFactory.CreateLogger("App");
+
StartupOptions = options;
ImageEncoder = imageEncoder;