fallback support
This commit is contained in:
@@ -12,7 +12,7 @@ namespace Inspectron.Epson;
|
||||
/// </summary>
|
||||
public class EpsonPrinter : IEpsonPrinter
|
||||
{
|
||||
private readonly ILogger? _logger;
|
||||
private readonly ILogger? _logger=null;
|
||||
private TcpClient? _tcpClient;
|
||||
private NetworkStream? _stream;
|
||||
private string? _printerIp;
|
||||
@@ -29,9 +29,9 @@ public class EpsonPrinter : IEpsonPrinter
|
||||
/// Initialize a new instance of EpsonPrinter
|
||||
/// </summary>
|
||||
/// <param name="logger">Optional logger for diagnostic output</param>
|
||||
public EpsonPrinter(ILogger? logger = null)
|
||||
public EpsonPrinter(/*ILogger? logger = null*/)
|
||||
{
|
||||
_logger = logger;
|
||||
//_logger = logger;
|
||||
RegisterCodepages();
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user