From a246ac6405623382bdaee73732eff64bde26e71a Mon Sep 17 00:00:00 2001 From: Maxime Beauchemin Date: Mon, 25 Mar 2019 16:10:02 -0700 Subject: [PATCH] Remove super verbose `logging.debug` call 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 8076f09c7470..2f65392558f9 100644 --- a/superset/sql_parse.py +++ b/superset/sql_parse.py @@ -127,7 +127,6 @@ def __extract_from_token(self, token, depth=0): 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)