From 625c4412d42357b1cdf6c209138249454eaa21b2 Mon Sep 17 00:00:00 2001 From: Meredith Lancaster Date: Mon, 4 Mar 2024 16:34:50 -0700 Subject: [PATCH] fix printf linter issue Signed-off-by: Meredith Lancaster --- pkg/cmd/attestation/logging/logger.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/cmd/attestation/logging/logger.go b/pkg/cmd/attestation/logging/logger.go index 8b094e2a6..c9719d95f 100644 --- a/pkg/cmd/attestation/logging/logger.go +++ b/pkg/cmd/attestation/logging/logger.go @@ -57,7 +57,7 @@ func (l *Logger) VerbosePrint(msg string) (int, error) { return 0, nil } - return fmt.Fprintf(l.IO.ErrOut, msg) + return fmt.Fprintln(l.IO.ErrOut, msg) } func (l *Logger) VerbosePrintf(f string, v ...interface{}) (int, error) {