Skip to content

Commit 99ccfb5

Browse files
fix CR: only print normaloutput when is not verbose
1 parent b63def0 commit 99ccfb5

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

Diff for: arduino/builder/preprocess_sketch.go

+2-1
Original file line numberDiff line numberDiff line change
@@ -29,8 +29,9 @@ func (b *Builder) preprocessSketch(includes paths.PathList) error {
2929
)
3030
if b.logger.Verbose() {
3131
b.logger.WriteStdout(verboseOutput)
32+
} else {
33+
b.logger.WriteStdout(normalOutput)
3234
}
33-
b.logger.WriteStdout(normalOutput)
3435

3536
return err
3637
}

0 commit comments

Comments
 (0)