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

@@ -3,9 +3,9 @@ using System.Collections.Concurrent;
using System.Collections.Generic;
using System.Linq;
using System.Net;
using Microsoft.Extensions.Logging;
using Umbraco.Core;
using Umbraco.Core.Services;
using Umbraco.Core.Logging;
using Umbraco.Core.Models;
using Umbraco.Web.Models.Trees;
using Umbraco.Core.Models.Entities;
@@ -26,7 +26,7 @@ namespace Umbraco.Web.Trees
{
private readonly IEntityService _entityService;
private readonly IWebSecurity _webSecurity;
private readonly ILogger _logger;
private readonly ILogger<ContentTreeControllerBase> _logger;
private readonly ActionCollection _actionCollection;
private readonly IUserService _userService;
private readonly IDataTypeService _dataTypeService;
@@ -39,7 +39,7 @@ namespace Umbraco.Web.Trees
IMenuItemCollectionFactory menuItemCollectionFactory,
IEntityService entityService,
IWebSecurity webSecurity,
ILogger logger,
ILogger<ContentTreeControllerBase> logger,
ActionCollection actionCollection,
IUserService userService,
IDataTypeService dataTypeService