Skip to content

Commit

Permalink
undo logs
Browse files Browse the repository at this point in the history
  • Loading branch information
matt2e committed Nov 28, 2024
1 parent dba7e52 commit 48adef2
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion internal/container/container.go
Original file line number Diff line number Diff line change
Expand Up @@ -374,7 +374,7 @@ func ComposeUp(ctx context.Context, name, composeYAML string, envars ...string)
}
defer release() //nolint:errcheck

logger.Debugf("Running docker compose up for %s", name)
logger.Debugf("Running docker compose up")

envars = append(envars, "COMPOSE_IGNORE_ORPHANS=True")

Expand Down
6 changes: 3 additions & 3 deletions internal/integration/harness.go
Original file line number Diff line number Diff line change
Expand Up @@ -226,8 +226,8 @@ func run(t *testing.T, actionsOrOptions ...ActionOrOption) {
assert.True(t, ok)

// Build FTL binary
// logger := log.Configure(&logWriter{logger: t}, log.Config{Level: log.Debug})
ctx := log.ContextWithNewDefaultLogger(context.Background())
logger := log.Configure(&logWriter{logger: t}, log.Config{Level: log.Debug})
ctx := log.ContextWithLogger(context.Background(), logger)
binDir := filepath.Join(rootDir, "build", "release")

var kubeClient *kubernetes.Clientset
Expand Down Expand Up @@ -303,7 +303,7 @@ func run(t *testing.T, actionsOrOptions ...ActionOrOption) {
if opts.startController {
Infof("Starting ftl cluster")

command := []string{"serve", "--recreate", "--log-level=debug"}
command := []string{"serve", "--recreate"}
if opts.devMode {
command = []string{"dev"}
}
Expand Down

0 comments on commit 48adef2

Please sign in to comment.