From 7c32f4187e306ee7eddb9dc649760a39818e6f0e Mon Sep 17 00:00:00 2001 From: nenoNaninu Date: Wed, 18 Dec 2024 21:49:31 +0900 Subject: [PATCH] improve log message --- src/AspNetCore.SignalR.OpenTelemetry/Internal/HubLogger.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/AspNetCore.SignalR.OpenTelemetry/Internal/HubLogger.cs b/src/AspNetCore.SignalR.OpenTelemetry/Internal/HubLogger.cs index a1ff016..1673046 100644 --- a/src/AspNetCore.SignalR.OpenTelemetry/Internal/HubLogger.cs +++ b/src/AspNetCore.SignalR.OpenTelemetry/Internal/HubLogger.cs @@ -9,7 +9,7 @@ internal static partial class HubLogger [LoggerMessage(8200, LogLevel.Information, "SignalR connection established to {Hub} over {TransportType}")] public static partial void LogOnConnected(ILogger logger, string hub, HttpTransportType transportType); - [LoggerMessage(8201, LogLevel.Information, "Invoking the SignalR hub method {Hub}.{HubMethod}")] + [LoggerMessage(8201, LogLevel.Information, "SignalR hub method invocation: {Hub}.{HubMethod}")] public static partial void LogHubMethodInvocation(ILogger logger, string hub, string hubMethod); [LoggerMessage(8202, LogLevel.Information, "SignalR connection to {Hub} was disconnected")]