Skip to content

Commit

Permalink
fix(gradle): use Debugf print log with formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
iseki0 committed Dec 30, 2024
1 parent 6944b9b commit aa50940
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion module/gradle/gradle_env.go
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,7 @@ func readGradleVersionFromWrapper(ctx context.Context, projectDir string) string
}
var r = gradlePropertiesWrapperVer.FindStringSubmatch(string(data))
if len(r) > 0 {
logger.Debug("gradle-wrapper gradle version read: %s", r[1])
logger.Debugf("gradle-wrapper gradle version read: %s", r[1])
return r[1]
}
return ""
Expand Down

0 comments on commit aa50940

Please sign in to comment.