2 instantiations of LoggerInformation
Microsoft.Extensions.Telemetry (2)
Logging\ExtendedLoggerFactory.cs (2)
186loggerInformation[newLoggerIndex] = new LoggerInformation(provider, existingLogger.Key); 229loggers[i] = new LoggerInformation(_providerRegistrations[i].Provider, categoryName);
9 references to LoggerInformation
Microsoft.Extensions.Telemetry (9)
Buffering\BufferedLoggerProxy.cs (2)
23LoggerInformation[] loggerInformations = _parentLogger.Loggers; 24foreach (LoggerInformation loggerInformation in loggerInformations)
Logging\ExtendedLogger.cs (2)
33public LoggerInformation[] Loggers { get; set; } 41public ExtendedLogger(ExtendedLoggerFactory factory, LoggerInformation[] loggers)
Logging\ExtendedLoggerFactory.cs (5)
182LoggerInformation[] loggerInformation = logger.Loggers; 224private LoggerInformation[] CreateLoggers(string categoryName) 226var loggers = new LoggerInformation[_providerRegistrations.Count]; 235private (MessageLogger[] messageLoggers, ScopeLogger[] scopeLoggers) ApplyFilters(LoggerInformation[] loggers) 240foreach (LoggerInformation loggerInformation in loggers)