diff --git a/aspnetcore/fundamentals/logging.md b/aspnetcore/fundamentals/logging.md index cf6818fe83..2b597acbe9 100644 --- a/aspnetcore/fundamentals/logging.md +++ b/aspnetcore/fundamentals/logging.md @@ -80,7 +80,7 @@ An error should be logged when the current flow of the application must stop due A critical log level should be reserved for unrecoverable application or system crashes, or catastrophic failure that requires immediate attention. Examples: data loss scenarios, out of disk space -The `Logging` package provides `helper extension methods` for each `LogLevel` value, allowing you to call, for example, `LogInformation`, rather than the more verbose `Log(LogLevel.Information, ...)` method. Each of the `LogLevel`-specific extension methods has several overloads, allowing you to pass in some or all of the following parameters: +The `Logging` package provides helper extension methods for each `LogLevel` value, allowing you to call, for example, `LogInformation`, rather than the more verbose `Log(LogLevel.Information, ...)` method. Each of the `LogLevel`-specific extension methods has several overloads, allowing you to pass in some or all of the following parameters: **string data**