summaryrefslogtreecommitdiff
path: root/internal/storage
diff options
context:
space:
mode:
authorPeter Stone <thepeterstone@gmail.com>2026-05-02 22:10:48 -1000
committerGitHub <noreply@github.com>2026-05-02 22:10:48 -1000
commitb32bfe1bc6bcbc45d7d1549d6ae6412bc3e4424f (patch)
tree4dc822097b7f32a37ad655a550da1abada79ce85 /internal/storage
parent1ec3f87c392145580a62858110d9fd10638203db (diff)
parente7b382bf177cbe518af3d86c3ee6c49344d225f4 (diff)
Merge pull request #3 from thepeterstone/claude/deferred-work
Close deferred work — real GeminiRunner subprocess, Local UI option
Diffstat (limited to 'internal/storage')
-rw-r--r--internal/storage/db.go5
1 files changed, 0 insertions, 5 deletions
diff --git a/internal/storage/db.go b/internal/storage/db.go
index c871c77..ce60e2f 100644
--- a/internal/storage/db.go
+++ b/internal/storage/db.go
@@ -699,11 +699,6 @@ func scanTask(row scanner) (*task.Task, error) {
t.State = task.State(state)
t.Priority = task.Priority(priority)
t.Timeout.Duration = time.Duration(timeoutNS)
- // Add debug log for configJSON
- // The logger is not available directly in db.go, so I'll use fmt.Printf for now.
- // For production code, a logger should be injected.
- // fmt.Printf("DEBUG: configJSON from DB: %s\n", configJSON)
- // TODO: Replace with proper logger when available.
if err := json.Unmarshal([]byte(configJSON), &t.Agent); err != nil {
return nil, fmt.Errorf("unmarshaling agent config: %w", err)
}