aboutsummaryrefslogtreecommitdiff
path: root/Jellyfin.Server/Program.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Jellyfin.Server/Program.cs')
-rw-r--r--Jellyfin.Server/Program.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/Jellyfin.Server/Program.cs b/Jellyfin.Server/Program.cs
index b82281554..2a2f1dde6 100644
--- a/Jellyfin.Server/Program.cs
+++ b/Jellyfin.Server/Program.cs
@@ -82,7 +82,7 @@ namespace Jellyfin.Server
appConfig = await CreateConfiguration(appPaths).ConfigureAwait(false);
- await CreateLogger(appConfig, appPaths).ConfigureAwait(false);
+ CreateLogger(appConfig, appPaths);
_logger = _loggerFactory.CreateLogger("Main");
@@ -338,7 +338,7 @@ namespace Jellyfin.Server
.Build();
}
- private static async Task CreateLogger(IConfiguration configuration, IApplicationPaths appPaths)
+ private static void CreateLogger(IConfiguration configuration, IApplicationPaths appPaths)
{
try
{