Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Empty file added spelling.dic
Empty file.
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (c) Microsoft. All rights reserved.
// Copyright (c) Microsoft. All rights reserved.
// Licensed under the MIT license. See LICENSE file in the project root for full license information.

using System;
Expand Down Expand Up @@ -46,12 +46,12 @@ public Task StartAsync()

private static class Log
{
private static readonly Action<ILogger, string, int, int, Exception> _startingConnection =
private static readonly Action<ILogger, string, int, int, Exception> StartingConnectionAction =
LoggerMessage.Define<string, int, int>(LogLevel.Debug, new EventId(1, "StartingConnection"), "Starting {name} with {hubCount} hubs and {connectionCount} per hub connections...");

public static void StartingConnection(ILogger logger, string name, int connectionCount, int hubCount)
{
_startingConnection(logger, name, connectionCount, hubCount, null);
StartingConnectionAction(logger, name, connectionCount, hubCount, null);
}
}
}
Expand Down
Loading
Loading