Remove the fractional part from time in PropertyInfoTable initialization log
This commit is contained in:
parent
a83052e01c
commit
a335cf3145
1 changed files with 1 additions and 1 deletions
|
|
@ -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)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue