mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-07-09 03:04:24 -04:00
Revert unnecessary ordering changes in ApplicationHost
This commit is contained in:
parent
6b06a9a919
commit
9aa259eb95
@ -165,11 +165,6 @@ namespace Emby.Server.Implementations
|
|||||||
/// <inheritdoc />
|
/// <inheritdoc />
|
||||||
public bool IsShuttingDown { get; private set; }
|
public bool IsShuttingDown { get; private set; }
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// Gets the logger factory.
|
|
||||||
/// </summary>
|
|
||||||
protected ILoggerFactory LoggerFactory { get; }
|
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Gets the logger.
|
/// Gets the logger.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
@ -183,6 +178,11 @@ namespace Emby.Server.Implementations
|
|||||||
/// <value>The plugins.</value>
|
/// <value>The plugins.</value>
|
||||||
public IReadOnlyList<IPlugin> Plugins => _plugins;
|
public IReadOnlyList<IPlugin> Plugins => _plugins;
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Gets the logger factory.
|
||||||
|
/// </summary>
|
||||||
|
protected ILoggerFactory LoggerFactory { get; }
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Gets or sets the application paths.
|
/// Gets or sets the application paths.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
@ -378,9 +378,10 @@ namespace Emby.Server.Implementations
|
|||||||
LoggerFactory = loggerFactory;
|
LoggerFactory = loggerFactory;
|
||||||
FileSystemManager = fileSystem;
|
FileSystemManager = fileSystem;
|
||||||
|
|
||||||
Logger = LoggerFactory.CreateLogger("App");
|
|
||||||
ConfigurationManager = new ServerConfigurationManager(ApplicationPaths, LoggerFactory, XmlSerializer, FileSystemManager);
|
ConfigurationManager = new ServerConfigurationManager(ApplicationPaths, LoggerFactory, XmlSerializer, FileSystemManager);
|
||||||
|
|
||||||
|
Logger = LoggerFactory.CreateLogger("App");
|
||||||
|
|
||||||
StartupOptions = options;
|
StartupOptions = options;
|
||||||
|
|
||||||
ImageEncoder = imageEncoder;
|
ImageEncoder = imageEncoder;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user