Skip to content

Commit 3dc280d

Browse files
Show filename in "using precompiled core" message
This is more consistent with other similar messages (e.g. "Using previously compiled file") and provides a direct hint to the user where this cached core can be deleted if needed. Signed-off-by: Matthijs Kooijman <[email protected]>
1 parent 6ec9962 commit 3dc280d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Diff for: src/arduino.cc/builder/phases/core_builder.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@ func compileCore(buildPath string, buildCachePath string, buildProperties proper
108108
if canUseArchivedCore {
109109
// use archived core
110110
if verbose {
111-
logger.Println(constants.LOG_LEVEL_INFO, "Using precompiled core")
111+
logger.Println(constants.LOG_LEVEL_INFO, "Using precompiled core: {0}", targetArchivedCore)
112112
}
113113
return targetArchivedCore, variantObjectFiles, nil
114114
}

0 commit comments

Comments
 (0)