We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 66bb9bb commit 9383dc2Copy full SHA for 9383dc2
ti/savings/cache/build_marker.go
@@ -34,7 +34,7 @@ func checkBuildToolMarkers(telemetryData *types.TelemetryData, log *logrus.Logge
34
// After reading the marker file, it renames the file to prevent subsequent reads
35
func checkMarkerFileExists(path string, log *logrus.Logger) bool {
36
if _, err := os.Stat(path); err == nil {
37
- log.Debugf("Build tool marker detected: %s", path)
+ log.Infof("Build tool marker detected: %s", path)
38
// Rename the file to indicate it's been processed
39
processedPath := path + ".processed"
40
if err := os.Rename(path, processedPath); err != nil {
0 commit comments