You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@superset.apache.org by hu...@apache.org on 2022/10/12 17:09:36 UTC

[superset] branch mv-sql-error-logs updated: update message

This is an automated email from the ASF dual-hosted git repository.

hugh pushed a commit to branch mv-sql-error-logs
in repository https://gitbox.apache.org/repos/asf/superset.git


The following commit(s) were added to refs/heads/mv-sql-error-logs by this push:
     new 1c04c0f5c7 update message
1c04c0f5c7 is described below

commit 1c04c0f5c7d3ab79d442fa18c73e35b4114c1358
Author: hughhhh <hu...@gmail.com>
AuthorDate: Wed Oct 12 13:09:22 2022 -0400

    update message
---
 superset/sqllab/command.py | 1 -
 1 file changed, 1 deletion(-)

diff --git a/superset/sqllab/command.py b/superset/sqllab/command.py
index 1fcbee3671..91a38ac00f 100644
--- a/superset/sqllab/command.py
+++ b/superset/sqllab/command.py
@@ -133,7 +133,6 @@ class ExecuteSqlCommand(BaseCommand):
             raise ex
         except Exception as ex:
             logger.error("Query %d: %s", query.id, type(ex), exc_info=True)
-            logger.debug("Query %d: %s", query.id, ex)
             raise SqlLabException(self._execution_context, exception=ex) from ex
 
     def _try_get_existing_query(self) -> Optional[Query]: