Skip to content

Commit 9383dc2

Browse files
committed
fix: [CI-18413]: Add discoverability of --profile and refactor
1 parent 66bb9bb commit 9383dc2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ti/savings/cache/build_marker.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ func checkBuildToolMarkers(telemetryData *types.TelemetryData, log *logrus.Logge
3434
// After reading the marker file, it renames the file to prevent subsequent reads
3535
func checkMarkerFileExists(path string, log *logrus.Logger) bool {
3636
if _, err := os.Stat(path); err == nil {
37-
log.Debugf("Build tool marker detected: %s", path)
37+
log.Infof("Build tool marker detected: %s", path)
3838
// Rename the file to indicate it's been processed
3939
processedPath := path + ".processed"
4040
if err := os.Rename(path, processedPath); err != nil {

0 commit comments

Comments
 (0)