diff --git a/MarketData/MarketData/Services/MainService.cs b/MarketData/MarketData/Services/MainService.cs index fea3dfc..33a3520 100755 --- a/MarketData/MarketData/Services/MainService.cs +++ b/MarketData/MarketData/Services/MainService.cs @@ -863,6 +863,9 @@ namespace MarketData.Services } } + /// + /// We need to implement this with a batch queue so that we are doing some of these concurrentlyday + /// public static void UpdateMissingAnalystRatings() { Profiler profiler = new Profiler(); @@ -904,7 +907,7 @@ namespace MarketData.Services } finally { - MDTrace.WriteLine(LogLevel.DEBUG,$"Done, total took {profiler.End()}(ms)"); + MDTrace.WriteLine(LogLevel.DEBUG,$"{nameof(UpdateMissingAnalystRatings)} Done, total took {profiler.End()}(ms)"); } }