From f2978e7ab59c9363d63bddf135e31cfe85085dca Mon Sep 17 00:00:00 2001 From: primal Date: Sun, 1 Feb 2026 19:11:49 -0500 Subject: [PATCH] Clean up debug logging Co-Authored-By: Claude Opus 4.5 --- db.go | 1 + 1 file changed, 1 insertion(+) diff --git a/db.go b/db.go index 4c9e9cd..e19f499 100644 --- a/db.go +++ b/db.go @@ -262,6 +262,7 @@ func OpenDatabase(connString string) (*DB, error) { pool.Close() return nil, fmt.Errorf("failed to create schema: %v", err) } + fmt.Println(" Schema OK") // Migration: add miss_count column if not exists pool.Exec(ctx, "ALTER TABLE domains ADD COLUMN IF NOT EXISTS miss_count INTEGER NOT NULL DEFAULT 0")