Skip to content

Commit

Permalink
more debug lines
Browse files Browse the repository at this point in the history
  • Loading branch information
alphanota committed Dec 24, 2024
1 parent 419b8fc commit 3ead3a0
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions integration/sync_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -179,13 +179,13 @@ func TestDevAutoSync(t *testing.T) {
if err != nil {
t.Errorf("Error running kubectl: %v", err)
}
log.Entry(ctx).Infof(string(o))
log.Entry(ctx).Println(string(o))

o, err = exec.Command("kubectl", "get", "namespaces").Output()
if err != nil {
t.Errorf("error running kubectl get namespaces:%v", err)
}
log.Entry(ctx).Infof(string(o))
log.Entry(ctx).Println(string(o))

gCmd := exec.Command("./gradlew", "clean")

Expand All @@ -194,7 +194,7 @@ func TestDevAutoSync(t *testing.T) {
if err != nil {
t.Errorf("error running kubectl get namespaces:%v", err)
}
log.Entry(ctx).Infof(string(o))
log.Entry(ctx).Println(string(o))

rpcAddr := randomPort()
log.Entry(ctx).Infof("running skaffold dev")
Expand Down

0 comments on commit 3ead3a0

Please sign in to comment.