using Microsoft.Extensions.Logging.Console; namespace SampleWebApp.AppLogger; /// /// Options to Enable AWS X-Ray TraceId injection /// public class XrayCustomFormatterOptions : ConsoleFormatterOptions { /// /// Enable X-Ray TraceId Injection as Log Suffix /// /// public bool EnableTraceIdInjection { get; set; } = true; }