Browse Source

Remove debug logging from ShowSearchCommand execution

pull/3642/head
Lex Li 3 months ago
parent
commit
b771a902a4
  1. 4
      ILSpy/Search/ShowSearchCommand.cs

4
ILSpy/Search/ShowSearchCommand.cs

@ -43,9 +43,7 @@ namespace ICSharpCode.ILSpy.Search @@ -43,9 +43,7 @@ namespace ICSharpCode.ILSpy.Search
protected override void OnExecute(object sender, ExecutedRoutedEventArgs e)
{
Console.WriteLine($"ShowSearchCommand: Executing ShowToolPane for SearchPaneModel.PaneContentId using dockWorkspace type: {dockWorkspace?.GetType().FullName}");
var result = dockWorkspace.ShowToolPane(SearchPaneModel.PaneContentId);
Console.WriteLine($"ShowSearchCommand: ShowToolPane returned: {result}");
dockWorkspace.ShowToolPane(SearchPaneModel.PaneContentId);
}
}
}
Loading…
Cancel
Save