7 writes to CombineLogs
Microsoft.AspNetCore.Diagnostics.Middleware (1)
Logging\HttpLoggingServiceCollectionExtensions.cs (1)
44o.CombineLogs = true;
Microsoft.AspNetCore.Diagnostics.Middleware.Tests (3)
Logging\AcceptanceTests.cs (3)
281x.CombineLogs = false; 475x.AddHttpLoggingRedaction().AddHttpLogging(x => x.CombineLogs = false); 509static x => x.AddHttpLoggingRedaction().AddHttpLogging(x => x.CombineLogs = false),
Microsoft.AspNetCore.HttpLogging.Tests (3)
HttpLoggingMiddlewareTests.cs (3)
1242options.CurrentValue.CombineLogs = true; 1505options.CurrentValue.CombineLogs = true; 1574options.CurrentValue.CombineLogs = true;
8 references to CombineLogs
Microsoft.AspNetCore.Diagnostics.Middleware (1)
Logging\HttpLoggingServiceCollectionExtensions.cs (1)
28/// This will enable <see cref="HttpLoggingOptions.CombineLogs"/> and <see cref="HttpLoggingFields.Duration"/> by default.
Microsoft.AspNetCore.HttpLogging (7)
HttpLoggingInterceptorContext.cs (1)
79/// If <see cref="HttpLoggingOptions.CombineLogs"/> is enabled, the parameters will be logged as part of the combined log.
HttpLoggingMiddleware.cs (4)
143if (logContext.InternalParameters.Count > 0 && !options.CombineLogs) 169!options.CombineLogs); 219if (options.CombineLogs) 343if (logContext.InternalParameters.Count > 0 && !options.CombineLogs)
IHttpLoggingInterceptor.cs (2)
19/// If <see cref="HttpLoggingOptions.CombineLogs"/> is enabled then <see cref="HttpLoggingInterceptorContext.Parameters"/> will carry over from the request to response 32/// If <see cref="HttpLoggingOptions.CombineLogs"/> is enabled then <see cref="HttpLoggingInterceptorContext.Parameters"/> will carry over from the request to response