Remove logging
This commit is contained in:
@@ -4,7 +4,6 @@ using System.Net;
|
||||
using System.Net.Sockets;
|
||||
using System.Threading;
|
||||
using System.Threading.Tasks;
|
||||
using Microsoft.Extensions.Logging;
|
||||
using Microsoft.Extensions.Options;
|
||||
using mROA.Abstract;
|
||||
|
||||
@@ -15,7 +14,6 @@ namespace mROA.Implementation.Backend
|
||||
private readonly TcpListener _tcpListener;
|
||||
private readonly IConnectionHub _hub;
|
||||
private readonly HubRequestExtractor _hre;
|
||||
private readonly ILogger _logger;
|
||||
private readonly DistributionOptions _distribution;
|
||||
private readonly IContextualSerializationToolKit _serialization;
|
||||
private readonly Dictionary<int, CancellationTokenSource> _extractorsTokenSources = new();
|
||||
@@ -24,8 +22,7 @@ namespace mROA.Implementation.Backend
|
||||
|
||||
public NetworkGatewayModule(IOptions<GatewayOptions> options, IIdentityGenerator identityGenerator,
|
||||
IContextualSerializationToolKit serialization, ICallIndexProvider callIndexProvider, IConnectionHub hub,
|
||||
IOptions<DistributionOptions> distribution, HubRequestExtractor hre,
|
||||
ILogger<ChannelInteractionModule.StreamExtractor> logger)
|
||||
IOptions<DistributionOptions> distribution, HubRequestExtractor hre)
|
||||
{
|
||||
_tcpListener = new(options.Value.Endpoint);
|
||||
_identityGenerator = identityGenerator;
|
||||
@@ -33,7 +30,6 @@ namespace mROA.Implementation.Backend
|
||||
_callIndexProvider = callIndexProvider;
|
||||
_hub = hub;
|
||||
_hre = hre;
|
||||
_logger = logger;
|
||||
_distribution = distribution.Value;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user