Skip to content

Commit f2a98c0

Browse files
committed
Fixes found test packages output
1 parent 46ffce8 commit f2a98c0

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

tools/flakeguard/cmd/find.go

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@ package cmd
22

33
import (
44
"encoding/json"
5+
"fmt"
56

67
"github.com/rs/zerolog/log"
78
"github.com/smartcontractkit/chainlink-testing-framework/tools/flakeguard/git"
@@ -160,7 +161,7 @@ func outputResults(packages []string, jsonOutput bool) {
160161
log.Debug().Str("output", string(data)).Msg("JSON")
161162
} else {
162163
for _, pkg := range packages {
163-
log.Debug().Str("package", pkg).Msg("Test package")
164+
fmt.Print(pkg, " ")
164165
}
165166
}
166167
}

0 commit comments

Comments
 (0)