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 44e19ee commit ba98bcbCopy full SHA for ba98bcb
check/check.go
@@ -16,6 +16,7 @@ import (
16
"github.com/arduino/arduino-check/project"
17
"github.com/arduino/arduino-cli/cli/errorcodes"
18
"github.com/arduino/arduino-cli/cli/feedback"
19
+ "github.com/sirupsen/logrus"
20
)
21
22
// RunChecks runs all checks for the given project and outputs the results.
@@ -32,8 +33,7 @@ func RunChecks(project project.Type) {
32
33
}
34
35
if !runCheck {
- // TODO: this should only be printed to log and in verbose mode
36
- fmt.Printf("Skipping check: %s\n", checkConfiguration.ID)
+ logrus.Infof("Skipping check: %s\n", checkConfiguration.ID)
37
continue
38
39
0 commit comments