1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-31 06:18:14 +00:00

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
parent 2a460aa369
commit d3e735f279

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;