fix _logger

This commit is contained in:
xjasonlyu
2022-05-24 22:59:38 +08:00
parent fa61294ade
commit 7a889a4ac5

View File

@@ -18,7 +18,7 @@ public abstract class BaseProvider
protected BaseProvider(IHttpClient httpClient, ILogger logger)
{
_httpClient = httpClient;
Logger = logger;
_logger = logger;
}
#else
private readonly IHttpClientFactory _httpClientFactory;