Skip to content

Commit eaeb709

Browse files
Show the sizer commandline in verbose mode
For some reason the sizer commandline was never shown. For consistency, it is now shown in verbose mode, just like the other commands. Signed-off-by: Matthijs Kooijman <[email protected]>
1 parent 34fab0a commit eaeb709

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/arduino.cc/builder/phases/sizer.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -126,7 +126,7 @@ func checkSize(ctx *types.Context, buildProperties properties.Map) error {
126126
}
127127

128128
func execSizeRecipe(ctx *types.Context, properties properties.Map) (textSize int, dataSize int, eepromSize int, resErr error) {
129-
out, err := builder_utils.ExecRecipe(properties, constants.RECIPE_SIZE_PATTERN, false, false, false, ctx.GetLogger())
129+
out, err := builder_utils.ExecRecipe(properties, constants.RECIPE_SIZE_PATTERN, false, ctx.Verbose, false, ctx.GetLogger())
130130
if err != nil {
131131
resErr = errors.New("Error while determining sketch size: " + err.Error())
132132
return

0 commit comments

Comments
 (0)