Skip to content

Commit c350bce

Browse files
authored
Some minor doc edits.
1 parent 90587d1 commit c350bce

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/Serilog.AspNetCore/AspNetCore/RequestLoggingOptions.cs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -35,21 +35,21 @@ public class RequestLoggingOptions
3535
public string MessageTemplate { get; set; }
3636

3737
/// <summary>
38-
/// Gets or sets the function returning the <see cref="LogEventLevel"/> based on the <see cref="HttpContext"/>, the number of
38+
/// A function returning the <see cref="LogEventLevel"/> based on the <see cref="HttpContext"/>, the number of
3939
/// elapsed milliseconds required for handling the request, and an <see cref="Exception" /> if one was thrown.
4040
/// The default behavior returns <see cref="LogEventLevel.Error"/> when the response status code is greater than 499 or if the
4141
/// <see cref="Exception"/> is not null.
4242
/// </summary>
4343
/// <value>
44-
/// The function returning the <see cref="LogEventLevel"/>.
44+
/// A function returning the <see cref="LogEventLevel"/>.
4545
/// </value>
4646
public Func<HttpContext, double, Exception, LogEventLevel> GetLevel { get; set; }
4747

4848
/// <summary>
49-
/// Gets or sets the action that allows you to enrich the diagnostic context
49+
/// A callback that can be used to set additional properties on the request completion event.
5050
/// </summary>
5151
public Action<IDiagnosticContext, HttpContext> EnrichDiagnosticContext { get; set; }
5252

5353
internal RequestLoggingOptions() { }
5454
}
55-
}
55+
}

0 commit comments

Comments
 (0)