Skip to content

Commit

Permalink
Show exception traceback if IncorrectVersionError
Browse files Browse the repository at this point in the history
  • Loading branch information
rad-pat committed Oct 8, 2024
1 parent a9022f9 commit bfe1b99
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion superset/commands/dashboard/importers/dispatcher.py
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ def run(self) -> None:
command.run()
return
except IncorrectVersionError:
logger.debug("File not handled by command, skipping")
logger.exception("File not handled by command, skipping") # give a full traceback for debugging
except (CommandInvalidError, ValidationError):
# found right version, but file is invalid
logger.info("Command failed validation")
Expand Down

0 comments on commit bfe1b99

Please sign in to comment.