Remove a bunch of references to the old logger

This commit is contained in:
Mole
2020-09-21 09:52:58 +02:00
parent 894abdd183
commit ab3ac5ad91
76 changed files with 272 additions and 251 deletions

View File

@@ -2,10 +2,10 @@
using System.Collections.Generic;
using System.Diagnostics;
using System.Linq;
using Microsoft.Extensions.Logging;
using Newtonsoft.Json;
using NPoco;
using Umbraco.Core;
using Umbraco.Core.Logging;
using Umbraco.Core.Persistence;
using Umbraco.Core.Persistence.Dtos;
using Umbraco.Core.Scoping;
@@ -21,9 +21,9 @@ namespace Umbraco.Web.PublishedCache.NuCache.DataSource
{
private const int PageSize = 500;
private readonly ILogger _logger;
private readonly ILogger<DatabaseDataSource> _logger;
public DatabaseDataSource(ILogger logger)
public DatabaseDataSource(ILogger<DatabaseDataSource> logger)
{
_logger = logger ?? throw new ArgumentNullException(nameof(logger));
}