14 references to LoggerEventIds
Microsoft.AspNetCore.Hosting (9)
Internal\ApplicationLifetime.cs (3)
65_logger.ApplicationError(LoggerEventIds.ApplicationStoppingException, 83_logger.ApplicationError(LoggerEventIds.ApplicationStartupException, 100_logger.ApplicationError(LoggerEventIds.ApplicationStoppedException,
Internal\HostingApplicationDiagnostics.cs (3)
260eventId: LoggerEventIds.RequestStarting, 278eventId: LoggerEventIds.RequestFinished, 290eventId: LoggerEventIds.RequestUnhandled,
Internal\HostingLoggerExtensions.cs (3)
14eventId: LoggerEventIds.ApplicationStartupException, 22eventId: LoggerEventIds.HostingStartupAssemblyException, 50logger.LogWarning(eventId: LoggerEventIds.PortsOverridenByUrls,
Microsoft.AspNetCore.Hosting.Tests (5)
HostingApplicationDiagnosticsTests.cs (3)
1074var startLog = testSink.Writes.Single(w => w.EventId == LoggerEventIds.RequestStarting); 1075var unhandedLog = testSink.Writes.Single(w => w.EventId == LoggerEventIds.RequestUnhandled); 1076var endLog = testSink.Writes.Single(w => w.EventId == LoggerEventIds.RequestFinished);
WebHostBuilderTests.cs (2)
313var context = provider.Sink.Writes.Where(s => s.EventId.Id == LoggerEventIds.HostingStartupAssemblyException); 1209var context = provider.Sink.Writes.FirstOrDefault(s => s.EventId.Id == LoggerEventIds.HostingStartupAssemblyException);