diff options
| author | Mark Monteiro <marknr.monteiro@protonmail.com> | 2020-04-20 20:20:39 -0400 |
|---|---|---|
| committer | Mark Monteiro <marknr.monteiro@protonmail.com> | 2020-04-20 20:48:39 -0400 |
| commit | bc4e72b29b7e43242028549df1d2471e65b045bc (patch) | |
| tree | d3b498e74bef613b3f00934fc0aa417dd8351db5 /Emby.Server.Implementations/ApplicationHost.cs | |
| parent | f81505969877a9f15794eabd98f0fc8e54ddb17d (diff) | |
Create ApplicationHost logger correctly
Diffstat (limited to 'Emby.Server.Implementations/ApplicationHost.cs')
| -rw-r--r-- | Emby.Server.Implementations/ApplicationHost.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Emby.Server.Implementations/ApplicationHost.cs b/Emby.Server.Implementations/ApplicationHost.cs index 28aecf55b..33aec1a06 100644 --- a/Emby.Server.Implementations/ApplicationHost.cs +++ b/Emby.Server.Implementations/ApplicationHost.cs @@ -255,7 +255,7 @@ namespace Emby.Server.Implementations ConfigurationManager = new ServerConfigurationManager(ApplicationPaths, LoggerFactory, _xmlSerializer, _fileSystemManager); - Logger = LoggerFactory.CreateLogger("App"); + Logger = LoggerFactory.CreateLogger<ApplicationHost>(); _startupOptions = options; |
