Skip to content

Commit af6c8a4

Browse files
committed
MINOR: log: Remove trailing newlines in log output
1 parent 0cdf122 commit af6c8a4

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

cmd/dataplaneapi/main.go

+3-3
Original file line numberDiff line numberDiff line change
@@ -85,9 +85,9 @@ func main() {
8585

8686
server.ConfigureAPI()
8787

88-
log.Infof("HAProxy Data Plane API %s %s%s\n\n", GitTag, GitCommit, GitDirty)
89-
log.Infof("Build from: %s\n", GitRepo)
90-
log.Infof("Build date: %s\n\n", BuildTime)
88+
log.Infof("HAProxy Data Plane API %s %s%s", GitTag, GitCommit, GitDirty)
89+
log.Infof("Build from: %s", GitRepo)
90+
log.Infof("Build date: %s", BuildTime)
9191

9292
if err := server.Serve(); err != nil {
9393
log.Fatalln(err)

0 commit comments

Comments
 (0)