Shell: Avoid spamming debug output with suggestions

This commit is contained in:
AnotherTest 2020-04-12 22:19:51 +04:30 committed by Andreas Kling
commit d3e735f279
Notes: sideshowbarker 2024-07-19 07:39:41 +09:00

View file

@ -1067,10 +1067,6 @@ int main(int argc, char** argv)
suggestions[0] = String::format("%s ", suggestions[0].characters());
}
dbg() << "found " << suggestions.size() << " elements";
for (auto& el : suggestions)
dbg() << ">>> '" << el << "'";
editor.suggest(token.length(), 0);
return suggestions;