From fe064f497c218d38852e02213207669571cf3272 Mon Sep 17 00:00:00 2001 From: Sean Date: Wed, 26 Feb 2025 12:31:16 -0500 Subject: [PATCH] Format items in cache with comma. --- MarketDataLib/Cache/LocalPriceCache.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/MarketDataLib/Cache/LocalPriceCache.cs b/MarketDataLib/Cache/LocalPriceCache.cs index 394f873..8a57058 100644 --- a/MarketDataLib/Cache/LocalPriceCache.cs +++ b/MarketDataLib/Cache/LocalPriceCache.cs @@ -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))); } } }