From 68d2880bce214a4fa7fcf6673c9717bde54ed3c2 Mon Sep 17 00:00:00 2001 From: Maxime Beauchemin Date: Tue, 26 Mar 2019 08:42:13 -0700 Subject: [PATCH] Remove super verbose `logging.debug` call (#7122) I left this behind on a previous PR, and it gets kind of crazy on large SQL statements, so decided it's probably a good thing to clean this up. --- superset/sql_parse.py | 1 - 1 file changed, 1 deletion(-) diff --git a/superset/sql_parse.py b/superset/sql_parse.py index 8076f09c7..2f6539255 100644 --- a/superset/sql_parse.py +++ b/superset/sql_parse.py @@ -127,7 +127,6 @@ class ParsedQuery(object): table_name_preceding_token = False for item in token.tokens: - logging.debug((' ' * depth) + str(item.ttype) + str(item.value)) if item.is_group and not self.__is_identifier(item): self.__extract_from_token(item, depth=depth + 1)