nytai commented on a change in pull request #14088:
URL: https://github.com/apache/superset/pull/14088#discussion_r611946741



##########
File path: superset/views/base.py
##########
@@ -198,7 +198,8 @@ def wraps(self: "BaseSupersetView", *args: Any, **kwargs: 
Any) -> FlaskResponse:
             logger.warning(ex)
             return json_errors_response(errors=[ex.error], status=ex.status)
         except SupersetException as ex:
-            logger.exception(ex)
+            if ex.status > 500:

Review comment:
       should probably be `>=`
   




-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

For queries about this service, please contact Infrastructure at:
[email protected]



---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to