fix printf linter issue
Signed-off-by: Meredith Lancaster <malancas@github.com>
This commit is contained in:
parent
fec5bfbbad
commit
625c4412d4
1 changed files with 1 additions and 1 deletions
|
|
@ -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) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue