From 25e39aea882ac58c32d948bb89c22d948f373b8b Mon Sep 17 00:00:00 2001 From: Kaushik Iska Date: Sun, 17 Dec 2023 18:31:17 -0500 Subject: [PATCH] add logs when staging table is found --- flow/connectors/bigquery/bigquery.go | 1 + 1 file changed, 1 insertion(+) diff --git a/flow/connectors/bigquery/bigquery.go b/flow/connectors/bigquery/bigquery.go index 587ec456db..4e45b7d307 100644 --- a/flow/connectors/bigquery/bigquery.go +++ b/flow/connectors/bigquery/bigquery.go @@ -241,6 +241,7 @@ func (c *BigQueryConnector) WaitForTableReady(tblName string) error { _, err := table.Metadata(c.ctx) if err == nil { + log.Infof("table %s is ready", tblName) return nil }