From 635be097b4b1de68a964125c1197ca1dcbb06e75 Mon Sep 17 00:00:00 2001 From: Jordan Brown Date: Mon, 8 Jun 2020 10:55:33 -0400 Subject: [PATCH] Fix log file names --- src/Tgstation.Server.Host/Core/Application.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Tgstation.Server.Host/Core/Application.cs b/src/Tgstation.Server.Host/Core/Application.cs index 7f486eeb43..8632cf6209 100644 --- a/src/Tgstation.Server.Host/Core/Application.cs +++ b/src/Tgstation.Server.Host/Core/Application.cs @@ -136,7 +136,7 @@ namespace Tgstation.Server.Host.Core "{Timestamp:o} {RequestId,13} [{Level:u3}] {SourceContext:l}: {Message} ({EventId:x8}){NewLine}{Exception}", null); - logPath = IOManager.ConcatPath(logPath, "tgs-{Date}.log"); + logPath = IOManager.ConcatPath(logPath, "tgs-.log"); var rollingFileConfig = sinkConfig.File( formatter, logPath,