From 176e8475b4025542456ef51fcf17f3809181fc6c Mon Sep 17 00:00:00 2001 From: Youssef Victor Date: Mon, 5 Jul 2021 12:58:51 +0200 Subject: [PATCH] Add missing semicolon --- docs/core/extensions/logging.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/core/extensions/logging.md b/docs/core/extensions/logging.md index 48b16379af79f..9b0ed02b87a93 100644 --- a/docs/core/extensions/logging.md +++ b/docs/core/extensions/logging.md @@ -358,7 +358,7 @@ public void Test(string id) { _logger.LogWarning( AppLogEvents.Error, ex, - "Failed to process iteration: {Id}", id) + "Failed to process iteration: {Id}", id); } } ```