Skip to content

Commit f2a8e7a

Browse files
Fix event name of RequestLog. (#37043)
1 parent 3f682d4 commit f2a8e7a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Middleware/HttpLogging/src/HttpLoggingExtensions.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ internal static partial class HttpLoggingExtensions
99
{
1010
public static void RequestLog(this ILogger logger, HttpRequestLog requestLog) => logger.Log(
1111
LogLevel.Information,
12-
new EventId(1, "RequestLogLog"),
12+
new EventId(1, "RequestLog"),
1313
requestLog,
1414
exception: null,
1515
formatter: HttpRequestLog.Callback);

0 commit comments

Comments
 (0)