MINOR: DDL Change log level to debug (#16360)

This commit is contained in:
Mayur Singal 2024-05-21 15:13:55 +05:30 committed by GitHub
parent f1566d2715
commit ed792fd77b
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -148,7 +148,7 @@ def get_all_table_ddls(
self.all_table_ddls[(table.schema, table.name)] = str(CreateTable(table))
except Exception as exc:
logger.debug(traceback.format_exc())
logger.warning(f"Failed to get table ddls for {schema_name}: {exc}")
logger.debug(f"Failed to get table ddls for {schema_name}: {exc}")
def get_table_ddl_wrapper(