2 instantiations of LoggerInformation
Microsoft.Extensions.Logging (2)
LoggerFactory.cs (2)
189loggerInformation[newLoggerIndex] = new LoggerInformation(provider, existingLogger.Key); 218var loggerInformation = new LoggerInformation(_providerRegistrations[i].Provider, categoryName);
9 references to LoggerInformation
Microsoft.Extensions.Logging (9)
Logger.cs (3)
17public Logger(string categoryName, LoggerInformation[] loggers) 23public LoggerInformation[] Loggers { get; set; } 179LoggerInformation loggerInfo = logger.Loggers[i];
LoggerFactory.cs (6)
185LoggerInformation[] loggerInformation = logger.Loggers; 213private LoggerInformation[] CreateLoggers(string categoryName) 215var loggers = new List<LoggerInformation>(_providerRegistrations.Count); 218var loggerInformation = new LoggerInformation(_providerRegistrations[i].Provider, categoryName); 230private (MessageLogger[] MessageLoggers, ScopeLogger[]? ScopeLoggers) ApplyFilters(LoggerInformation[] loggers) 235foreach (LoggerInformation loggerInformation in loggers)