Skip to content

Commit

Permalink
remove logs
Browse files Browse the repository at this point in the history
  • Loading branch information
Amogh-Bharadwaj committed Mar 8, 2024
1 parent ae82a3f commit 577690c
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions flow/connectors/snowflake/snowflake.go
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,6 @@ func TableCheck(ctx context.Context, database *sql.DB, schemaName string) error
}()

if !schemaExists.Valid || !schemaExists.Bool {
slog.Info("Apparently schema " + schemaName + " doesn't exist")
// create schema
_, err = tx.ExecContext(ctx, fmt.Sprintf(createSchemaSQL, schemaName))
if err != nil {
Expand Down Expand Up @@ -190,7 +189,6 @@ func NewSnowflakeConnector(
return nil, fmt.Errorf("failed to get DSN from Snowflake config: %w", err)
}

fmt.Println(snowflakeConfig)
database, err := sql.Open("snowflake", snowflakeConfigDSN)
if err != nil {
return nil, fmt.Errorf("failed to open connection to Snowflake peer: %w", err)
Expand Down

0 comments on commit 577690c

Please sign in to comment.