From a335cf31455198b7377262983c1be33df588e5d1 Mon Sep 17 00:00:00 2001 From: Crypto137 Date: Thu, 15 Jan 2026 03:41:39 +0300 Subject: [PATCH] Remove the fractional part from time in PropertyInfoTable initialization log --- src/MHServerEmu.Games/Properties/PropertyInfoTable.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/MHServerEmu.Games/Properties/PropertyInfoTable.cs b/src/MHServerEmu.Games/Properties/PropertyInfoTable.cs index 0845baa5..1f1e465d 100644 --- a/src/MHServerEmu.Games/Properties/PropertyInfoTable.cs +++ b/src/MHServerEmu.Games/Properties/PropertyInfoTable.cs @@ -216,7 +216,7 @@ namespace MHServerEmu.Games.Properties // Finish initialization stopwatch.Stop(); - Logger.Info($"Initialized info for {_propertyInfos.Length} properties in {stopwatch.Elapsed.TotalMilliseconds} ms"); + Logger.Info($"Initialized info for {_propertyInfos.Length} properties in {(long)stopwatch.Elapsed.TotalMilliseconds} ms"); } public PropertyInfo LookupPropertyInfo(PropertyEnum propertyEnum)