1
0
Fork 0
mirror of https://github.com/LadybirdBrowser/ladybird.git synced 2025-06-10 10:01:13 +09: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
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;