瀏覽代碼

Shell: Avoid spamming debug output with suggestions

AnotherTest 5 年之前
父節點
當前提交
d3e735f279
共有 1 個文件被更改,包括 0 次插入4 次删除
  1. 0 4
      Shell/main.cpp

+ 0 - 4
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;