3 writes to Config
Microsoft.Extensions.Telemetry (3)
Logging\ExtendedLoggerFactory.cs (3)
93Config = ComputeConfig(enrichmentOptions?.CurrentValue ?? new(), redactionOptions?.CurrentValue ?? new() { ApplyDiscriminator = false }); 295private void UpdateEnrichmentOptions(LoggerEnrichmentOptions enrichmentOptions) => Config = ComputeConfig(enrichmentOptions, null); 296private void UpdateRedactionOptions(LoggerRedactionOptions redactionOptions) => Config = ComputeConfig(null, redactionOptions);
7 references to Config
Microsoft.Extensions.Telemetry (7)
Logging\ExtendedLogger.cs (2)
211var config = _factory.Config; 301var config = _factory.Config;
Logging\ExtendedLoggerFactory.cs (5)
270CaptureStackTraces = Config.CaptureStackTraces, 271UseFileInfoForStackTraces = Config.UseFileInfoForStackTraces, 272IncludeExceptionMessage = Config.IncludeExceptionMessage, 273MaxStackTraceLength = Config.MaxStackTraceLength, 281ApplyDiscriminator = Config.AddRedactionDiscriminator,