8 writes to CombineLogs
Microsoft.AspNetCore.Diagnostics.Middleware (1)
Logging\HttpLoggingServiceCollectionExtensions.cs (1)
44
o.
CombineLogs
= true;
Microsoft.AspNetCore.Diagnostics.Middleware.Tests (3)
Logging\AcceptanceTests.cs (3)
367
x.
CombineLogs
= false;
561
x.AddHttpLoggingRedaction().AddHttpLogging(x => x.
CombineLogs
= false);
595
static x => x.AddHttpLoggingRedaction().AddHttpLogging(x => x.
CombineLogs
= false),
Microsoft.AspNetCore.HttpLogging.Tests (4)
HttpLoggingMiddlewareTests.cs (4)
1325
options.CurrentValue.
CombineLogs
= true;
1588
options.CurrentValue.
CombineLogs
= true;
1657
options.CurrentValue.
CombineLogs
= true;
1700
options.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)
147
if (logContext.InternalParameters.Count > 0 && !options.
CombineLogs
)
173
!options.
CombineLogs
);
222
if (options.
CombineLogs
)
349
if (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