We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b9c5bc8 commit 1a02079Copy full SHA for 1a02079
ObjectService/Program.cs
@@ -20,7 +20,9 @@
20
builder.Services.AddDatabaseDeveloperPageExceptionFilter();
21
builder.Services.AddHttpLogging(logging =>
22
{
23
- logging.LoggingFields = HttpLoggingFields.All;
+ logging.LoggingFields = HttpLoggingFields.Request
24
+ | HttpLoggingFields.ResponsePropertiesAndHeaders
25
+ | HttpLoggingFields.Duration; // this is `All` excluding `ResponseBody`
26
logging.CombineLogs = true;
27
});
28
0 commit comments