You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
/** A builder for configuring {@link @aspnet/signalr.HubConnection} instances. */
17
42
exportclassHubConnectionBuilder{
18
43
/** @internal */
@@ -44,15 +69,26 @@ export class HubConnectionBuilder {
44
69
45
70
/** Configures custom logging for the {@link @aspnet/signalr.HubConnection}.
46
71
*
47
-
* @param {LogLevel | ILogger} logging An object implementing the {@link @aspnet/signalr.ILogger} interface or {@link @aspnet/signalr.LogLevel}.
72
+
* @param {string} logLevel A string representing a LogLevel setting a minimum level of messages to log.
73
+
* See {@link https://docs.microsoft.com/en-us/aspnet/core/signalr/configuration#configure-logging|the documentation for client logging configuration} for more details.
/** Configures custom logging for the {@link @aspnet/signalr.HubConnection}.
78
+
*
79
+
* @param {LogLevel | string | ILogger} logging A {@link @aspnet/signalr.LogLevel}, a string representing a LogLevel, or an object implementing the {@link @aspnet/signalr.ILogger} interface.
80
+
* See {@link https://docs.microsoft.com/en-us/aspnet/core/signalr/configuration#configure-logging|the documentation for client logging configuration} for more details.
48
81
* @returns The {@link @aspnet/signalr.HubConnectionBuilder} instance, for chaining.
0 commit comments