Do some ILogger cleaning

This commit is contained in:
Mole
2020-09-28 08:26:21 +02:00
parent 7369ffc5fd
commit b5aedde616
46 changed files with 83 additions and 78 deletions

View File

@@ -32,10 +32,10 @@ namespace Umbraco.Web.Common.Install
private readonly InstallStatusTracker _installStatusTracker;
private readonly IUmbracoApplicationLifetime _umbracoApplicationLifetime;
private readonly InstallStepCollection _installSteps;
private readonly Microsoft.Extensions.Logging.ILogger<InstallApiController> _logger;
private readonly ILogger<InstallApiController> _logger;
private readonly IProfilingLogger _proflog;
public InstallApiController(DatabaseBuilder databaseBuilder, IProfilingLogger proflog, Microsoft.Extensions.Logging.ILogger<InstallApiController> logger,
public InstallApiController(DatabaseBuilder databaseBuilder, IProfilingLogger proflog, ILogger<InstallApiController> logger,
InstallHelper installHelper, InstallStepCollection installSteps, InstallStatusTracker installStatusTracker,
IUmbracoApplicationLifetime umbracoApplicationLifetime)
{