remove uneeded backticks (#2299)

pull/2301/head
Guillermo López-Anglada 2016-12-02 15:43:20 +01:00 committed by Steve Smith
parent 685f200eec
commit b429a65bb1
1 changed files with 1 additions and 1 deletions

View File

@ -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**