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