LoggerEnrichmentOptions.CaptureStackTraces Property

Definition

Gets or sets a value indicating whether to include stack traces when an exception is logged.

public:
 property bool CaptureStackTraces { bool get(); void set(bool value); };
public bool CaptureStackTraces { get; set; }
member this.CaptureStackTraces : bool with get, set
Public Property CaptureStackTraces As Boolean

Property Value

The default value is false.

Remarks

When set to true and exceptions are logged, the logger will add exception stack trace with inner exception as a separate key-value pair with key 'stackTrace'. The maximum length of the column defaults to 4096 characters and can be modified by setting the MaxStackTraceLength property. The stack trace beyond the current limit will be truncated.

Applies to