From 239331013756aa40b9a91918b4c1853e0af9901e Mon Sep 17 00:00:00 2001 From: Curtis Redgate Date: Tue, 14 Mar 2023 15:27:26 -0400 Subject: [PATCH] removed logger --- tap_redshift/__init__.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/tap_redshift/__init__.py b/tap_redshift/__init__.py index 98e9765..faa2a93 100644 --- a/tap_redshift/__init__.py +++ b/tap_redshift/__init__.py @@ -138,11 +138,9 @@ def discover_catalog(conn, db_name, db_schemas): """ ) entries = [] - LOGGER.warning(f"column_specs before transformation: {column_specs}") table_columns = [{'name': k, 'columns': [ {'pos': t[1], 'name': t[2], 'type': t[3], 'nullable': t[4], } for t in v ]} for k, v in groupby(column_specs, key=lambda t: t[0])] - LOGGER.warning(f"Table_columns after transformation: {table_columns}") table_pks = {k: [t[1] for t in v] for k, v in groupby(pk_specs, key=lambda t: t[0])} table_spec_dict = table_spec_to_dict(table_spec)