Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
refactor
  • Loading branch information
vishweshbankwar committed Mar 12, 2024
commit 69897ff5cb502dbd01b45f5204048a7108777d5a
Original file line number Diff line number Diff line change
Expand Up @@ -37,12 +37,12 @@ public ExperimentalOptions(IConfiguration configuration)
}

/// <summary>
/// Gets or sets a value indicating whether log event attributes should be exported.
/// Gets a value indicating whether log event attributes should be exported.
/// </summary>
public bool EmitLogEventAttributes { get; set; } = false;
public bool EmitLogEventAttributes { get; private set; } = false;

/// <summary>
/// Gets or sets a value indicating whether retries should be enabled in case of transient errors.
/// Gets a value indicating whether retries should be enabled in case of transient errors.
/// </summary>
public bool EnableInMemoryRetry { get; set; } = false;
public bool EnableInMemoryRetry { get; private set; } = false;
}