Skip to content

Commit

Permalink
MINOR: log: Remove trailing newlines in log output
Browse files Browse the repository at this point in the history
  • Loading branch information
mjuraga committed Jun 11, 2019
1 parent 0cdf122 commit af6c8a4
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions cmd/dataplaneapi/main.go
Expand Up @@ -85,9 +85,9 @@ func main() {

server.ConfigureAPI()

log.Infof("HAProxy Data Plane API %s %s%s\n\n", GitTag, GitCommit, GitDirty)
log.Infof("Build from: %s\n", GitRepo)
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)

if err := server.Serve(); err != nil {
log.Fatalln(err)
Expand Down

0 comments on commit af6c8a4

Please sign in to comment.