summaryrefslogtreecommitdiff
path: root/Shell/main.cpp
diff options
context:
space:
mode:
authorAnotherTest <ali.mpfard@gmail.com>2020-04-12 22:19:51 +0430
committerAndreas Kling <kling@serenityos.org>2020-04-13 00:49:24 +0200
commitd3e735f279097965a8948da922ddd0864f2fec81 (patch)
tree213eed548e932325f9c828f8e19d16d7c0378a8d /Shell/main.cpp
parent2a460aa369453cc1d23ca30df292f156db3578ab (diff)
downloadserenity-d3e735f279097965a8948da922ddd0864f2fec81.zip
Shell: Avoid spamming debug output with suggestions
Diffstat (limited to 'Shell/main.cpp')
-rw-r--r--Shell/main.cpp4
1 files changed, 0 insertions, 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;