From fa1057ddfd4f3b031bec05d89c5aa5d75021eed4 Mon Sep 17 00:00:00 2001 From: benbierens Date: Tue, 18 Jul 2023 10:39:27 +0200 Subject: [PATCH] Sets correct output filename for status log. --- Logging/StatusLog.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Logging/StatusLog.cs b/Logging/StatusLog.cs index 4d852ee..44af462 100644 --- a/Logging/StatusLog.cs +++ b/Logging/StatusLog.cs @@ -11,7 +11,7 @@ namespace Logging public StatusLog(LogConfig config, DateTime start, string codexId, string name = "") { - fullName = NameUtils.GetFixtureFullName(config, start, name); + fullName = NameUtils.GetFixtureFullName(config, start, name) + "_STATUS.log"; fixtureName = NameUtils.GetRawFixtureName(); this.codexId = codexId; }