From dfc83802262a6eb5ebd1c6619d138ad8c30e0a62 Mon Sep 17 00:00:00 2001 From: Alec Thomas Date: Thu, 11 Apr 2024 13:09:35 +1000 Subject: [PATCH] chore: spurious debug print --- go-runtime/ftl/ftltest/ftltest.go | 2 -- 1 file changed, 2 deletions(-) diff --git a/go-runtime/ftl/ftltest/ftltest.go b/go-runtime/ftl/ftltest/ftltest.go index f08aa296b9..688f84c2cc 100644 --- a/go-runtime/ftl/ftltest/ftltest.go +++ b/go-runtime/ftl/ftltest/ftltest.go @@ -5,7 +5,6 @@ import ( "context" "github.com/alecthomas/kong" - "github.com/alecthomas/repr" cf "github.com/TBD54566975/ftl/common/configuration" "github.com/TBD54566975/ftl/internal/log" @@ -16,7 +15,6 @@ func Context() context.Context { ctx := log.ContextWithNewDefaultLogger(context.Background()) cr := &cf.ProjectConfigResolver[cf.Configuration]{Config: []string{}} _ = kong.ApplyDefaults(cr) - repr.Println(cr) cm, err := cf.NewConfigurationManager(ctx, cr) if err != nil { panic(err)