Format items in cache with comma.

This commit is contained in:
2025-02-26 12:31:16 -05:00
parent 2365d1b9c4
commit fe064f497c

View File

@@ -296,7 +296,7 @@ namespace MarketData.Cache
lock(thisLock)
{
lastCount=Count();
MDTrace.WriteLine(LogLevel.DEBUG,String.Format("LocalPriceCache Symbols: {0} Items in cache: {1}.",priceCache.Keys.Count,Utility.FormatNumber(lastCount,0)));
MDTrace.WriteLine(LogLevel.DEBUG,String.Format("LocalPriceCache Symbols: {0}. Items in cache: {1}.",priceCache.Keys.Count,Utility.FormatNumber(lastCount,0,true)));
}
}
}