Skip to content

Commit 149e1a1

Browse files
Merge pull request #129 from growgraph/128-fix-schema-inference-relation-bugs-v2
improved rel inference
2 parents 9e86731 + 0edf9f9 commit 149e1a1

6 files changed

Lines changed: 684 additions & 209 deletions

File tree

examples/5-ingest-postgres/ingest.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,10 @@
2929

3030
logger = logging.getLogger(__name__)
3131

32+
# Configure logging: INFO level for graflo module, WARNING for others
33+
logging.basicConfig(level=logging.WARNING, handlers=[logging.StreamHandler()])
34+
# Set graflo module to INFO level
35+
logging.getLogger("graflo").setLevel(logging.INFO)
3236

3337
# Step 1: Connect to PostgreSQL (source database)
3438
# Load PostgreSQL config from docker/postgres/.env (recommended)

0 commit comments

Comments
 (0)