Skip to content

Commit

Permalink
fix CR: only print normaloutput when is not verbose
Browse files Browse the repository at this point in the history
  • Loading branch information
alessio-perugini committed Sep 15, 2023
1 parent b63def0 commit 99ccfb5
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion arduino/builder/preprocess_sketch.go
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,9 @@ func (b *Builder) preprocessSketch(includes paths.PathList) error {
)
if b.logger.Verbose() {
b.logger.WriteStdout(verboseOutput)
} else {
b.logger.WriteStdout(normalOutput)
}
b.logger.WriteStdout(normalOutput)

return err
}

0 comments on commit 99ccfb5

Please sign in to comment.