mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-04-24 22:17:25 -04:00
Removed async from non-async method
This commit is contained in:
parent
18ae107ce4
commit
c607c95e64
1 changed files with 2 additions and 2 deletions
|
@ -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…
Add table
Add a link
Reference in a new issue