Skip to content

Commit

Permalink
Suppress EmbedIO console output
Browse files Browse the repository at this point in the history
  • Loading branch information
cyanfish committed Jan 31, 2024
1 parent a5ec457 commit ecc29d5
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions NAPS2.Escl.Server/EsclServer.cs
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit ecc29d5

Please sign in to comment.