From b6cd4cecf3f90e13575e85073efa151e7016ce56 Mon Sep 17 00:00:00 2001 From: Luke Latham <1622880+guardrex@users.noreply.github.com> Date: Tue, 23 Oct 2018 11:19:08 -0500 Subject: [PATCH] Fix code block highlight (#9168) --- aspnetcore/fundamentals/logging/index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/aspnetcore/fundamentals/logging/index.md b/aspnetcore/fundamentals/logging/index.md index b06795abf9..c51d7a5cd8 100644 --- a/aspnetcore/fundamentals/logging/index.md +++ b/aspnetcore/fundamentals/logging/index.md @@ -438,7 +438,7 @@ To suppress all logs, specify `LogLevel.None` as the minimum log level. The inte The project template code calls `CreateDefaultBuilder` to set up logging for the Console and Debug providers. The `CreateDefaultBuilder` method also sets up logging to look for configuration in a `Logging` section, using code like the following: -[!code-csharp[](index/samples/2.x/TodoApiSample/Program.cs?name=snippet_ExpandDefault&highlight=15)] +[!code-csharp[](index/samples/2.x/TodoApiSample/Program.cs?name=snippet_ExpandDefault&highlight=16)] The configuration data specifies minimum log levels by provider and category, as in the following example: