2 writes to MaxLogRecordSizeInBytes
Microsoft.AspNetCore.Diagnostics.Middleware.Tests (1)
Logging\AcceptanceTests.cs (1)
923options.MaxLogRecordSizeInBytes = 500;
Microsoft.Extensions.Telemetry (1)
Buffering\GlobalLogBufferingConfigureOptions.cs (1)
39options.MaxLogRecordSizeInBytes = parsedOptions.MaxLogRecordSizeInBytes;
3 references to MaxLogRecordSizeInBytes
Microsoft.Extensions.Telemetry (3)
Buffering\GlobalBuffer.cs (1)
101if (serializedLogRecord.SizeInBytes > _options.CurrentValue.MaxLogRecordSizeInBytes)
Buffering\GlobalLogBufferingConfigureOptions.cs (1)
39options.MaxLogRecordSizeInBytes = parsedOptions.MaxLogRecordSizeInBytes;
Buffering\GlobalLogBufferingOptions.cs (1)
71/// If a log entry size is greater than <see cref="MaxLogRecordSizeInBytes"/>, it will not be buffered and will be emitted normally.