More logging!

This commit is contained in:
James Newton-King 2018-04-15 19:19:24 +12:00
parent 81b593fdbe
commit 1d900fe139
No known key found for this signature in database
GPG Key ID: 0A66B2F456BF5526
1 changed files with 1 additions and 1 deletions

View File

@ -80,7 +80,7 @@ namespace Microsoft.AspNetCore.SignalR.Tests
[MemberData(nameof(TransportTypes))]
public async Task CanStartAndStopConnectionUsingGivenTransport(HttpTransportType transportType)
{
using (StartVerifableLog(out var loggerFactory, minLogLevel: LogLevel.Trace))
using (StartVerifableLog(out var loggerFactory, testName: $"CanStartAndStopConnectionUsingGivenTransport_{transportType}", minLogLevel: LogLevel.Trace))
{
var url = _serverFixture.Url + "/echo";
var connection = new HttpConnection(new Uri(url), transportType, loggerFactory);