Skip to content

Commit

Permalink
Fix logging typo (#437)
Browse files Browse the repository at this point in the history
Signed-off-by: benrifkind <[email protected]>
  • Loading branch information
benrifkind authored and Wonong committed Mar 4, 2021
1 parent 44347e8 commit 643d7d5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion databuilder/extractor/hive_table_metadata_extractor.py
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ def init(self, conf: ConfigTree) -> None:

self.sql_stmt = conf.get_string(HiveTableMetadataExtractor.EXTRACT_SQL, default=default_sql)

LOGGER.info('SQL for hive metastore: %i', self.sql_stmt)
LOGGER.info('SQL for hive metastore: %s', self.sql_stmt)

sql_alch_conf = sql_alch_conf.with_fallback(ConfigFactory.from_dict(
{SQLAlchemyExtractor.EXTRACT_SQL: self.sql_stmt}))
Expand Down

0 comments on commit 643d7d5

Please sign in to comment.