Skip to content

Commit

Permalink
dev: delete null factory instance (#188)
Browse files Browse the repository at this point in the history
  • Loading branch information
KirillKurdyukov committed Sep 16, 2024
1 parent 6a4d4d2 commit 2108213
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/Ydb.Sdk/src/Ado/YdbConnectionStringBuilder.cs
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@
using System.Diagnostics.CodeAnalysis;
using System.Security.Cryptography.X509Certificates;
using Microsoft.Extensions.Logging;
using Microsoft.Extensions.Logging.Abstractions;
using Ydb.Sdk.Auth;

namespace Ydb.Sdk.Ado;
Expand Down Expand Up @@ -138,7 +137,7 @@ public string? RootCertificate

private string? _rootCertificate;

public ILoggerFactory LoggerFactory { get; set; } = new NullLoggerFactory();
public ILoggerFactory? LoggerFactory { get; set; }

public ICredentialsProvider? CredentialsProvider { get; set; }

Expand Down

0 comments on commit 2108213

Please sign in to comment.