We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 46ffce8 commit f2a98c0Copy full SHA for f2a98c0
tools/flakeguard/cmd/find.go
@@ -2,6 +2,7 @@ package cmd
2
3
import (
4
"encoding/json"
5
+ "fmt"
6
7
"github.com/rs/zerolog/log"
8
"github.com/smartcontractkit/chainlink-testing-framework/tools/flakeguard/git"
@@ -160,7 +161,7 @@ func outputResults(packages []string, jsonOutput bool) {
160
161
log.Debug().Str("output", string(data)).Msg("JSON")
162
} else {
163
for _, pkg := range packages {
- log.Debug().Str("package", pkg).Msg("Test package")
164
+ fmt.Print(pkg, " ")
165
}
166
167
0 commit comments