mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-07-09 03:04:24 -04:00
Removed async from non-async method
This commit is contained in:
parent
18ae107ce4
commit
c607c95e64
@ -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
|
||||
{
|
||||
|
Loading…
x
Reference in New Issue
Block a user