Sets correct output filename for status log.

This commit is contained in:
benbierens 2023-07-18 10:39:27 +02:00
parent 009ce1e9f3
commit fa1057ddfd
No known key found for this signature in database
GPG Key ID: FE44815D96D0A1AA
1 changed files with 1 additions and 1 deletions

View File

@ -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;
}