Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ public class LoggingRedactionOptions
/// <remarks>
/// If set to true, instead of logging <i>unknown</i> value for path attribute it will log whole path of routes not identified by ASP.NET Routing.
/// </remarks>
/// <value>Defaults to <see langword="true"/>.</value>
/// <value>Defaults to <see langword="false"/>.</value>
#pragma warning disable CA1805 // Do not initialize unnecessarily
public bool IncludeUnmatchedRoutes { get; set; } = false;
#pragma warning restore CA1805 // Do not initialize unnecessarily
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -309,7 +309,6 @@ await RunAsync(
});
}


[Fact]
public async Task HttpLogging_WhenLogLevelInfo_LogRequestStart()
{
Expand Down
Loading