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,9 +2,9 @@ using System.Globalization;
using System.Linq;
using Examine;
using Microsoft.Extensions.Options;
using Microsoft.Extensions.Logging;
using Umbraco.Core;
using Umbraco.Core.Configuration.Models;
using Umbraco.Core.Logging;
using Umbraco.Core.Models.PublishedContent;
using Umbraco.Core.Services;
@@ -15,13 +15,13 @@ namespace Umbraco.Web.Routing
/// </summary>
public class ContentFinderByConfigured404 : IContentLastChanceFinder
{
private readonly ILogger _logger;
private readonly ILogger<ContentFinderByConfigured404> _logger;
private readonly IEntityService _entityService;
private readonly ContentSettings _contentSettings;
private readonly IExamineManager _examineManager;
public ContentFinderByConfigured404(
ILogger logger,
ILogger<ContentFinderByConfigured404> logger,
IEntityService entityService,
IOptions<ContentSettings> contentConfigSettings,
IExamineManager examineManager)