Shortening log path
CI is failing with PathTooLongException
This commit is contained in:
parent
3b94cba009
commit
90a6d8fdf7
|
|
@ -28,7 +28,7 @@ namespace Microsoft.AspNetCore.SignalR.Tests.Common
|
|||
public ServerFixture()
|
||||
{
|
||||
var testLog = AssemblyTestLog.ForAssembly(typeof(ServerFixture<TStartup>).Assembly);
|
||||
_logToken = testLog.StartTestLog(null, typeof(ServerFixture<TStartup>).FullName, out _loggerFactory, "ServerFixture");
|
||||
_logToken = testLog.StartTestLog(null, $"{nameof(ServerFixture<TStartup>)}_{typeof(TStartup).Name}" , out _loggerFactory, "ServerFixture");
|
||||
_logger = _loggerFactory.CreateLogger<ServerFixture<TStartup>>();
|
||||
|
||||
StartServer();
|
||||
|
|
|
|||
Loading…
Reference in New Issue