mirror of
https://github.com/getredash/redash.git
synced 2025-12-25 01:03:20 -05:00
Removed unnecessary logging
This commit is contained in:
@@ -41,9 +41,6 @@ def mysql(connection_string):
|
||||
num_fields = len(cursor.description)
|
||||
column_names = [i[0] for i in cursor.description]
|
||||
|
||||
for c in data:
|
||||
logging.debug(c)
|
||||
|
||||
rows = [dict(zip(column_names, row)) for row in data]
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user