2 instantiations of LoggerInformation
Microsoft.Extensions.Telemetry (2)
Logging\ExtendedLoggerFactory.cs (2)
187loggerInformation[newLoggerIndex] = new LoggerInformation(provider, existingLogger.Key); 230var loggerInformation = new LoggerInformation(_providerRegistrations[i].Provider, categoryName);
8 references to LoggerInformation
Microsoft.Extensions.Telemetry (8)
Logging\ExtendedLogger.cs (2)
33public LoggerInformation[] Loggers { get; set; } 41public ExtendedLogger(ExtendedLoggerFactory factory, LoggerInformation[] loggers)
Logging\ExtendedLoggerFactory.cs (6)
183LoggerInformation[] loggerInformation = logger.Loggers; 225private LoggerInformation[] CreateLoggers(string categoryName) 227var loggers = new List<LoggerInformation>(_providerRegistrations.Count); 230var loggerInformation = new LoggerInformation(_providerRegistrations[i].Provider, categoryName); 243private (MessageLogger[] messageLoggers, ScopeLogger[] scopeLoggers) ApplyFilters(LoggerInformation[] loggers) 248foreach (LoggerInformation loggerInformation in loggers)