Skip to content

Commit

Permalink
Added default value for e3dc connection logger
Browse files Browse the repository at this point in the history
  • Loading branch information
Spontifixus committed Mar 23, 2021
1 parent 8cfb79e commit 4493eb8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Source/AM.E3dc.Rscp/E3dcConnection.cs
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ public sealed class E3dcConnection : IDisposable
/// Initializes a new instance of the <see cref="E3dcConnection"/> class.
/// </summary>
/// <param name="logger">An instance of the logger.</param>
public E3dcConnection(ILogger<E3dcConnection> logger)
public E3dcConnection(ILogger<E3dcConnection> logger = null)
: this(logger, new TcpClientWrapper(new TcpClient { NoDelay = true }), new E3dcAes256CryptoProvider())
{
}
Expand Down

0 comments on commit 4493eb8

Please sign in to comment.