From 092ae9993ed672e142833ff82f605cd4c4a01279 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 28 Sep 2021 10:33:46 -0700 Subject: [PATCH] Fix event name of RequestLog. (#37044) Co-authored-by: Aditya Mandaleeka <adityam@microsoft.com> --- src/Middleware/HttpLogging/src/HttpLoggingExtensions.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Middleware/HttpLogging/src/HttpLoggingExtensions.cs b/src/Middleware/HttpLogging/src/HttpLoggingExtensions.cs index 887d659105e..1f61d1b01c2 100644 --- a/src/Middleware/HttpLogging/src/HttpLoggingExtensions.cs +++ b/src/Middleware/HttpLogging/src/HttpLoggingExtensions.cs @@ -9,7 +9,7 @@ namespace Microsoft.AspNetCore.HttpLogging { public static void RequestLog(this ILogger logger, HttpRequestLog requestLog) => logger.Log( LogLevel.Information, - new EventId(1, "RequestLogLog"), + new EventId(1, "RequestLog"), requestLog, exception: null, formatter: HttpRequestLog.Callback); -- GitLab