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)
276eventId: LoggerEventIds.RequestStarting, 294eventId: LoggerEventIds.RequestFinished, 306eventId: 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)
1241var startLog = testSink.Writes.Single(w => w.EventId == LoggerEventIds.RequestStarting); 1242var unhandedLog = testSink.Writes.Single(w => w.EventId == LoggerEventIds.RequestUnhandled); 1243var 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);