mirror of
https://github.com/jellyfin/jellyfin.git
synced 2024-11-15 18:08:53 -07:00
Fix last CA1305 error (#8806)
This commit is contained in:
parent
e1bd5684e5
commit
9c1da522c6
@ -1,5 +1,6 @@
|
||||
using System;
|
||||
using System.Collections.Concurrent;
|
||||
using System.Globalization;
|
||||
using System.IO;
|
||||
using System.Threading;
|
||||
using Emby.Server.Implementations;
|
||||
@ -28,7 +29,9 @@ namespace Jellyfin.Server.Integration.Tests
|
||||
static JellyfinApplicationFactory()
|
||||
{
|
||||
// Perform static initialization that only needs to happen once per test-run
|
||||
Log.Logger = new LoggerConfiguration().WriteTo.Console().CreateLogger();
|
||||
Log.Logger = new LoggerConfiguration()
|
||||
.WriteTo.Console(formatProvider: CultureInfo.InvariantCulture)
|
||||
.CreateLogger();
|
||||
Program.PerformStaticInitialization();
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user