Add more debug statements for timing in docker containers
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
Xander Sigler 2023-12-09 21:00:02 -08:00
parent 26bf9cd7ec
commit 98466729ab

View File

@ -42,6 +42,7 @@ namespace AdventOfCode.Models
Console.WriteLine($"Elapsed ticks is {timer.ElapsedTicks.ToString()}");
Console.WriteLine($"System Clock Resolution: {TimeSpan.FromTicks(Stopwatch.Frequency).TotalSeconds} seconds");
Console.WriteLine($"Local Time Zone: {TimeZoneInfo.Local}");
Console.WriteLine($"Current System Time: {DateTime.Now}");
this._response.RunTime = timer.ElapsedTicks.ToString();
this._response.Status = true;
}