diff --git a/test/Common/ServerFixture.cs b/test/Common/ServerFixture.cs index c78a686bd1..e79e4caf90 100644 --- a/test/Common/ServerFixture.cs +++ b/test/Common/ServerFixture.cs @@ -28,7 +28,7 @@ namespace Microsoft.AspNetCore.SignalR.Tests.Common public ServerFixture() { var testLog = AssemblyTestLog.ForAssembly(typeof(ServerFixture).Assembly); - _logToken = testLog.StartTestLog(null, typeof(ServerFixture).FullName, out _loggerFactory, "ServerFixture"); + _logToken = testLog.StartTestLog(null, $"{nameof(ServerFixture)}_{typeof(TStartup).Name}" , out _loggerFactory, "ServerFixture"); _logger = _loggerFactory.CreateLogger>(); StartServer();