From 22707da976c8e1c9c2a60cfa619cab4ccacd2bbb Mon Sep 17 00:00:00 2001 From: Jordan Dominion Date: Sat, 21 Oct 2023 05:32:41 -0400 Subject: [PATCH] Additional logging --- .../Components/Engine/WindowsOpenDreamInstaller.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/Tgstation.Server.Host/Components/Engine/WindowsOpenDreamInstaller.cs b/src/Tgstation.Server.Host/Components/Engine/WindowsOpenDreamInstaller.cs index 71c35eb765..e9b3b9d6be 100644 --- a/src/Tgstation.Server.Host/Components/Engine/WindowsOpenDreamInstaller.cs +++ b/src/Tgstation.Server.Host/Components/Engine/WindowsOpenDreamInstaller.cs @@ -71,6 +71,7 @@ namespace Tgstation.Server.Host.Components.Engine protected override async ValueTask HandleExtremelyLongPathOperation(Func shortenedPathOperation, string originalPath, CancellationToken cancellationToken) { var shortPath = $"C:/{Guid.NewGuid()}"; + Logger.LogDebug("Shortening path for build from {long} to {short}...", originalPath, shortPath); await symlinkFactory.CreateSymbolicLink(originalPath, shortPath, cancellationToken); try {