[go: nahoru, domu]

Skip to content
This repository has been archived by the owner on Nov 16, 2023. It is now read-only.

Commit

Permalink
Fix LogLines (#17)
Browse files Browse the repository at this point in the history
  • Loading branch information
yqwang-ms committed Jul 17, 2019
1 parent 3654ac1 commit 9ab3ead
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/common/common_util.go
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ func InitLogger() {
}

func LogLines(format string, args ...interface{}) {
lines := strings.Split(fmt.Sprintf(format, args), "\n")
lines := strings.Split(fmt.Sprintf(format, args...), "\n")
for _, line := range lines {
log.Infof(line)
}
Expand Down

0 comments on commit 9ab3ead

Please sign in to comment.