Additional logging

This commit is contained in:
Jordan Dominion
2023-10-21 05:32:41 -04:00
parent 8eb8976629
commit 22707da976
@@ -71,6 +71,7 @@ namespace Tgstation.Server.Host.Components.Engine
protected override async ValueTask HandleExtremelyLongPathOperation(Func<string, ValueTask> 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
{