diff --git a/src/Tgstation.Server.Host.Watchdog/Watchdog.cs b/src/Tgstation.Server.Host.Watchdog/Watchdog.cs index 44bccaeb37..9cfed660e9 100644 --- a/src/Tgstation.Server.Host.Watchdog/Watchdog.cs +++ b/src/Tgstation.Server.Host.Watchdog/Watchdog.cs @@ -44,7 +44,10 @@ namespace Tgstation.Server.Host.Watchdog exeName += ".exe"; var dotnetPath = paths.Select(x => Path.Combine(x, exeName)) - .Where(x => File.Exists(x)) + .Where(x => { + logger.LogTrace("Checking for dotnet at {0}", x); + return File.Exists(x); + }) .FirstOrDefault(); if(dotnetPath == default)