From b429a65bb19dd18090d08de2af0c0b6f7d3f6507 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Guillermo=20L=C3=B3pez-Anglada?= Date: Fri, 2 Dec 2016 15:43:20 +0100 Subject: [PATCH] remove uneeded backticks (#2299) --- aspnetcore/fundamentals/logging.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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**