From bad4764e2aefc72af80e3dbbd0d7afbcbda26bc3 Mon Sep 17 00:00:00 2001 From: Jordan Brown Date: Tue, 27 Nov 2018 16:04:34 -0500 Subject: [PATCH] Log aspnetcore paths at startup --- src/Tgstation.Server.Host/Core/Application.cs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/Tgstation.Server.Host/Core/Application.cs b/src/Tgstation.Server.Host/Core/Application.cs index 57bfdf56d2..911f075ade 100644 --- a/src/Tgstation.Server.Host/Core/Application.cs +++ b/src/Tgstation.Server.Host/Core/Application.cs @@ -339,6 +339,8 @@ namespace Tgstation.Server.Host.Core throw new ArgumentNullException(nameof(logger)); logger.LogInformation(VersionString); + logger.LogDebug("Content Root: {0}", hostingEnvironment.ContentRootPath); + logger.LogTrace("Web Root: {0}", hostingEnvironment.WebRootPath); //attempt to restart the server if the configuration changes if(serverControl.WatchdogPresent)