Skip to content

Commit

Permalink
fix: logger message (#20714)
Browse files Browse the repository at this point in the history
(cherry picked from commit c70d102)
  • Loading branch information
betodealmeida authored and eschutho committed Sep 14, 2022
1 parent 067495d commit 56137eb
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 56137eb

Please sign in to comment.