Skip to content

Commit 4735160

Browse files
committed
Remove logging
1 parent af96eaf commit 4735160

File tree

2 files changed

+1
-3
lines changed

2 files changed

+1
-3
lines changed

Source/PluginEditor.cpp

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1332,7 +1332,6 @@ bool PluginEditor::perform(InvocationInfo const& info)
13321332
return true;
13331333
}
13341334
case CommandIDs::ShowBrowser: {
1335-
std::cout << "command id showbrowser" << std::endl;
13361335
sidebar->showPanel(sidebar->isShowingBrowser() ? Sidebar::SidePanel::ConsolePan : Sidebar::SidePanel::DocPan);
13371336
return true;
13381337
}
@@ -1347,7 +1346,6 @@ bool PluginEditor::perform(InvocationInfo const& info)
13471346
return true;
13481347
}
13491348
case CommandIDs::Search: {
1350-
std::cout << "command id search" << std::endl;
13511349
sidebar->showPanel(Sidebar::SidePanel::SearchPan);
13521350
return true;
13531351
}

Source/Utility/ValueTreeViewer.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -746,7 +746,7 @@ class ValueTreeViewerComponent : public Component
746746
if (node->valueTreeNode.hasProperty(propertyName)) {
747747
if (containsToken) {
748748
auto name = node->valueTreeNode.getProperty(propertyName).toString();
749-
std::cout << "token: " << token << " name: " << name << std::endl;
749+
//std::cout << "token: " << token << " name: " << name << std::endl;
750750
return (isStrict ? (token.length() == name.length()) : true) && name.containsIgnoreCase(token);
751751
}
752752
return true;

0 commit comments

Comments
 (0)