3 writes to Config
Microsoft.Extensions.Telemetry (3)
Logging\ExtendedLoggerFactory.cs (3)
109Config = ComputeConfig(enrichmentOptions?.CurrentValue ?? new(), redactionOptions?.CurrentValue ?? new() { ApplyDiscriminator = false }); 322private void UpdateEnrichmentOptions(LoggerEnrichmentOptions enrichmentOptions) => Config = ComputeConfig(enrichmentOptions, null); 323private void UpdateRedactionOptions(LoggerRedactionOptions redactionOptions) => Config = ComputeConfig(null, redactionOptions);
7 references to Config
Microsoft.Extensions.Telemetry (7)
Logging\ExtendedLogger.cs (2)
219var config = _factory.Config; 365var config = _factory.Config;
Logging\ExtendedLoggerFactory.cs (5)
291CaptureStackTraces = Config.CaptureStackTraces, 292UseFileInfoForStackTraces = Config.UseFileInfoForStackTraces, 293IncludeExceptionMessage = Config.IncludeExceptionMessage, 294MaxStackTraceLength = Config.MaxStackTraceLength, 302ApplyDiscriminator = Config.AddRedactionDiscriminator,