Skip to content

Commit

Permalink
fix: logger message (#20714)
Browse files Browse the repository at this point in the history
  • Loading branch information
betodealmeida committed Jul 15, 2022
1 parent 4495868 commit c70d102
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion superset/db_engine_specs/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ def load_engine_specs() -> List[Type[BaseEngineSpec]]:
try:
engine_spec = ep.load()
except Exception: # pylint: disable=broad-except
logger.warning("Unable to load Superset DB engine spec: %s", engine_spec)
logger.warning("Unable to load Superset DB engine spec: %s", ep.name)
continue
engine_specs.append(engine_spec)

Expand Down

0 comments on commit c70d102

Please sign in to comment.