1 write to Logger
Microsoft.AspNetCore (1)
WebApplication.cs (1)
36Logger = host.Services.GetRequiredService<ILoggerFactory>().CreateLogger(Environment.ApplicationName ?? nameof(WebApplication));
5 references to Logger
AzureSearch.ApiService (1)
Program.cs (1)
21var logger = app.Logger;
Microsoft.AspNetCore (1)
WebApplication.cs (1)
269public ILogger Logger => _webApplication.Logger;
MinimalSample (1)
Program.cs (1)
12app.Logger.LogInformation($"Current process ID: {Environment.ProcessId}");
MinimalSampleOwin (1)
Program.cs (1)
13app.Logger.LogInformation($"Current process ID: {Environment.ProcessId}");
Seq.ApiService (1)
Program.cs (1)
21app.Logger.LogInformation("Range is between {Min} and {Max}", min, max);