Skip to content

Commit

Permalink
Change Log.Trace() to Log.Debug() (#8429)
Browse files Browse the repository at this point in the history
  • Loading branch information
Marinovsky authored Nov 27, 2024
1 parent b99da54 commit 124063a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Brokerages/Backtesting/BacktestingBrokerage.cs
Original file line number Diff line number Diff line change
Expand Up @@ -526,7 +526,7 @@ public void ProcessDelistings(Delistings delistings)
// and underlying future delisting at the same time.
foreach (var delisting in delistings?.Values.OrderBy(x => !x.Symbol.SecurityType.IsOption()))
{
Log.Trace($"BacktestingBrokerage.ProcessDelistings(): Delisting {delisting.Type}: {delisting.Symbol.Value}, UtcTime: {Algorithm.UtcTime}, DelistingTime: {delisting.Time}");
Log.Debug($"BacktestingBrokerage.ProcessDelistings(): Delisting {delisting.Type}: {delisting.Symbol.Value}, UtcTime: {Algorithm.UtcTime}, DelistingTime: {delisting.Time}");
if (delisting.Type == DelistingType.Warning)
{
// We do nothing with warnings
Expand Down

0 comments on commit 124063a

Please sign in to comment.