2 instantiations of LoggerInformation
Microsoft.Extensions.Telemetry (2)
Logging\ExtendedLoggerFactory.cs (2)
183loggerInformation[newLoggerIndex] = new LoggerInformation(provider, existingLogger.Key); 226var loggerInformation = new LoggerInformation(_providerRegistrations[i].Provider, categoryName);
8 references to LoggerInformation
Microsoft.Extensions.Telemetry (8)
Logging\ExtendedLogger.cs (2)
31public LoggerInformation[] Loggers { get; set; } 39public ExtendedLogger(ExtendedLoggerFactory factory, LoggerInformation[] loggers)
Logging\ExtendedLoggerFactory.cs (6)
179LoggerInformation[] loggerInformation = logger.Loggers; 221private LoggerInformation[] CreateLoggers(string categoryName) 223var loggers = new List<LoggerInformation>(_providerRegistrations.Count); 226var loggerInformation = new LoggerInformation(_providerRegistrations[i].Provider, categoryName); 239private (MessageLogger[] messageLoggers, ScopeLogger[] scopeLoggers) ApplyFilters(LoggerInformation[] loggers) 244foreach (LoggerInformation loggerInformation in loggers)