chore: log file naming updated to include milliseconds

This commit is contained in:
2025-07-06 16:40:09 +03:00
parent ac9cb72914
commit 9f8578af9b
2 changed files with 2 additions and 2 deletions

View File

@@ -6,7 +6,7 @@ using Syntriax.Engine.Core.Debug;
Universe universe = new();
FileLogger fileLogger = new($"Logs/{DateTime.UtcNow:yyyy-MM-dd_HH-mm-ss}.log");
FileLogger fileLogger = new($"Logs/{DateTime.UtcNow:yyyy-MM-dd_HH-mm-ss-ffffff}.log");
universe.InstantiateUniverseObject().SetUniverseObject("Logger").BehaviourController
.AddBehaviour<LoggerContainer>().Logger = new LoggerWrapper(fileLogger, new ConsoleLogger());