Remove some unnecessary debug logging

This commit is contained in:
Hackerpilot 2015-08-10 16:39:55 -07:00
parent beddf301d4
commit c378464032
1 changed files with 2 additions and 2 deletions

View File

@ -734,7 +734,7 @@ DSymbol*[] getSymbolsByTokenChain(T)(Scope* completionScope,
break loop;
break;
case tok!"identifier":
trace(symbols[0].qualifier, " ", symbols[0].kind);
// trace(symbols[0].qualifier, " ", symbols[0].kind);
// Use type instead of the symbol itself for certain symbol kinds
while (symbols[0].qualifier == SymbolQualifier.func
@ -749,7 +749,7 @@ DSymbol*[] getSymbolsByTokenChain(T)(Scope* completionScope,
break loop;
}
trace("looking for ", tokens[i].text, " in ", symbols[0].name);
// trace("looking for ", tokens[i].text, " in ", symbols[0].name);
symbols = symbols[0].getPartsByName(internString(tokens[i].text));
if (symbols.length == 0)
{