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)
277eventId: LoggerEventIds.RequestStarting, 295eventId: LoggerEventIds.RequestFinished, 307eventId: 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)
1620var startLog = testSink.Writes.Single(w => w.EventId == LoggerEventIds.RequestStarting); 1621var unhandedLog = testSink.Writes.Single(w => w.EventId == LoggerEventIds.RequestUnhandled); 1622var endLog = testSink.Writes.Single(w => w.EventId == LoggerEventIds.RequestFinished);
WebHostBuilderTests.cs (2)
315var context = provider.Sink.Writes.Where(s => s.EventId.Id == LoggerEventIds.HostingStartupAssemblyException); 1213var context = provider.Sink.Writes.FirstOrDefault(s => s.EventId.Id == LoggerEventIds.HostingStartupAssemblyException);