Suppress EmbedIO console output

This commit is contained in:
Ben Olden-Cooligan 2024-01-30 21:06:34 -08:00
parent a5ec457e52
commit ecc29d5c09

View File

@ -7,6 +7,11 @@ namespace NAPS2.Escl.Server;
public class EsclServer : IEsclServer
{
static EsclServer()
{
Swan.Logging.Logger.NoLogging();
}
private readonly Dictionary<EsclDeviceConfig, DeviceContext> _devices = new();
private bool _started;
private CancellationTokenSource? _cts;