diff --git a/Engine/Results/LiveTradingResultHandler.cs b/Engine/Results/LiveTradingResultHandler.cs index 39076274e95f..2e375cf2274c 100644 --- a/Engine/Results/LiveTradingResultHandler.cs +++ b/Engine/Results/LiveTradingResultHandler.cs @@ -183,7 +183,6 @@ private void Update() //Create and send back the changes in chart since the algorithm started. var deltaCharts = new Dictionary(); - Log.Debug("LiveTradingResultHandler.Update(): Build delta charts"); var performanceCharts = new Dictionary(); lock (ChartLock) { @@ -210,18 +209,15 @@ private void Update() } } } - Log.Debug("LiveTradingResultHandler.Update(): End build delta charts"); //Profit loss changes, get the banner statistics, summary information on the performance for the headers. var serverStatistics = GetServerStatistics(utcNow); var holdings = GetHoldings(Algorithm.Securities.Values, Algorithm.SubscriptionManager.SubscriptionDataConfigService); //Add the algorithm statistics first. - Log.Debug("LiveTradingResultHandler.Update(): Build run time stats"); var summary = GenerateStatisticsResults(performanceCharts).Summary; var runtimeStatistics = GetAlgorithmRuntimeStatistics(summary); - Log.Debug("LiveTradingResultHandler.Update(): End build run time stats"); // since we're sending multiple packets, let's do it async and forget about it @@ -613,7 +609,6 @@ protected override void Sample(string chartName, string seriesName, int seriesIn return; } - Log.Debug("LiveTradingResultHandler.Sample(): Sampling " + chartName + "." + seriesName); lock (ChartLock) { //Add a copy locally: @@ -633,7 +628,6 @@ protected override void Sample(string chartName, string seriesName, int seriesIn //Add our value: series.Values.Add(value); } - Log.Debug("LiveTradingResultHandler.Sample(): Done sampling " + chartName + "." + seriesName); } /// @@ -643,7 +637,6 @@ protected override void Sample(string chartName, string seriesName, int seriesIn /// protected void SampleRange(IEnumerable updates) { - Log.Debug("LiveTradingResultHandler.SampleRange(): Begin sampling"); lock (ChartLock) { foreach (var update in updates) @@ -679,7 +672,6 @@ protected void SampleRange(IEnumerable updates) } } } - Log.Debug("LiveTradingResultHandler.SampleRange(): Finished sampling"); } /// @@ -1047,8 +1039,6 @@ public virtual void ProcessSynchronousEvents(bool forceProcess = false) if (time > _nextSample || forceProcess) { - Log.Debug("LiveTradingResultHandler.ProcessSynchronousEvents(): Enter"); - //Set next sample time: 4000 samples per backtest _nextSample = time.Add(ResamplePeriod); @@ -1090,8 +1080,6 @@ public virtual void ProcessSynchronousEvents(bool forceProcess = false) } } } - - Log.Debug("LiveTradingResultHandler.ProcessSynchronousEvents(): Exit"); } ///