Skip to content

Commit

Permalink
Change field in DependencyInjectionEventSource which is used as const…
Browse files Browse the repository at this point in the history
…ant (#51870)
  • Loading branch information
marek-safar authored Apr 26, 2021
1 parent eb82ce3 commit 8d989ae
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ internal sealed class DependencyInjectionEventSource : EventSource
public static readonly DependencyInjectionEventSource Log = new DependencyInjectionEventSource();

// Event source doesn't support large payloads so we chunk formatted call site tree
private int MaxChunkSize = 10 * 1024;
private const int MaxChunkSize = 10 * 1024;


private DependencyInjectionEventSource() : base(EventSourceSettings.EtwSelfDescribingEventFormat)
Expand Down

0 comments on commit 8d989ae

Please sign in to comment.