Shortening log path

CI is failing with PathTooLongException
This commit is contained in:
Pawel Kadluczka 2017-07-14 08:20:11 -07:00 committed by Pawel Kadluczka
parent 3b94cba009
commit 90a6d8fdf7
1 changed files with 1 additions and 1 deletions

View File

@ -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();