Skip to content

Commit aa50940

Browse files
committed
fix(gradle): use Debugf print log with formatting
1 parent 6944b9b commit aa50940

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

module/gradle/gradle_env.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -137,7 +137,7 @@ func readGradleVersionFromWrapper(ctx context.Context, projectDir string) string
137137
}
138138
var r = gradlePropertiesWrapperVer.FindStringSubmatch(string(data))
139139
if len(r) > 0 {
140-
logger.Debug("gradle-wrapper gradle version read: %s", r[1])
140+
logger.Debugf("gradle-wrapper gradle version read: %s", r[1])
141141
return r[1]
142142
}
143143
return ""

0 commit comments

Comments
 (0)