summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRĂ©mi Verschelde <rverschelde@gmail.com>2018-08-13 16:15:42 +0200
committerGitHub <noreply@github.com>2018-08-13 16:15:42 +0200
commitc091c12dcc40872f9a045ec0e92f3732a2e5c9e0 (patch)
tree96db6498c2cc23244f6bbb35baba8c4886345ed1
parente5ce6b728f2af108fd3c183cc7d9d540adda5193 (diff)
parent179e15f876463116e9ede714abd535d75cabe737 (diff)
Merge pull request #20970 from Chaosus/fix_spam
Remove usage console spam
-rw-r--r--modules/gdscript/gdscript_parser.cpp1
1 files changed, 0 insertions, 1 deletions
diff --git a/modules/gdscript/gdscript_parser.cpp b/modules/gdscript/gdscript_parser.cpp
index 177e245986..e0ed2b332b 100644
--- a/modules/gdscript/gdscript_parser.cpp
+++ b/modules/gdscript/gdscript_parser.cpp
@@ -5797,7 +5797,6 @@ GDScriptParser::DataType GDScriptParser::_reduce_node_type(Node *p_node) {
if (id->declared_block) {
node_type = id->declared_block->variables[id->name]->get_datatype();
id->declared_block->variables[id->name]->usages += 1;
- print_line("var " + id->name + " line " + itos(id->line) + " usages " + itos(id->declared_block->variables[id->name]->usages));
} else if (id->name == "#match_value") {
// It's a special id just for the match statetement, ignore
break;