Skip to content

Commit b771a90

Browse files
committed
Remove debug logging from ShowSearchCommand execution
1 parent 6c5a35c commit b771a90

1 file changed

Lines changed: 1 addition & 3 deletions

File tree

ILSpy/Search/ShowSearchCommand.cs

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -43,9 +43,7 @@ public ShowSearchCommand(DockWorkspace dockWorkspace)
4343

4444
protected override void OnExecute(object sender, ExecutedRoutedEventArgs e)
4545
{
46-
Console.WriteLine($"ShowSearchCommand: Executing ShowToolPane for SearchPaneModel.PaneContentId using dockWorkspace type: {dockWorkspace?.GetType().FullName}");
47-
var result = dockWorkspace.ShowToolPane(SearchPaneModel.PaneContentId);
48-
Console.WriteLine($"ShowSearchCommand: ShowToolPane returned: {result}");
46+
dockWorkspace.ShowToolPane(SearchPaneModel.PaneContentId);
4947
}
5048
}
5149
}

0 commit comments

Comments
 (0)