Skip to content

Commit bfa4529

Browse files
committed
Let Debugf() do its job
This is tripping linting/build errors in the pipeline.
1 parent 88e87a0 commit bfa4529

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

cmd/common/common.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -128,7 +128,7 @@ func GetSecrets(files []string, funcMap template.FuncMap) error {
128128
var err error
129129

130130
if len(files) > 0 {
131-
Logger.Debugf("Processing files: " + strings.Join(files, ","))
131+
Logger.Debugf("Processing files: %s", strings.Join(files, ","))
132132
for _, file := range files {
133133
data, err = ReadFileOrStdin(file)
134134
if err != nil {

0 commit comments

Comments
 (0)