From d3e735f279097965a8948da922ddd0864f2fec81 Mon Sep 17 00:00:00 2001 From: AnotherTest Date: Sun, 12 Apr 2020 22:19:51 +0430 Subject: [PATCH] Shell: Avoid spamming debug output with suggestions --- Shell/main.cpp | 4 ---- 1 file changed, 4 deletions(-) diff --git a/Shell/main.cpp b/Shell/main.cpp index 5662ef2e81..79628e0227 100644 --- a/Shell/main.cpp +++ b/Shell/main.cpp @@ -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;