We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0cdf122 commit af6c8a4Copy full SHA for af6c8a4
cmd/dataplaneapi/main.go
@@ -85,9 +85,9 @@ func main() {
85
86
server.ConfigureAPI()
87
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)
+ log.Infof("HAProxy Data Plane API %s %s%s", GitTag, GitCommit, GitDirty)
+ log.Infof("Build from: %s", GitRepo)
+ log.Infof("Build date: %s", BuildTime)
91
92
if err := server.Serve(); err != nil {
93
log.Fatalln(err)
0 commit comments