Skip to content

Commit

Permalink
[FAB-6704] Fix garbled listen message on startup
Browse files Browse the repository at this point in the history
There is an INFO message which was garble due
to an extra variable.

Change-Id: I15f234ab80319598bb625a351b16e15d8c717bfd
Signed-off-by: Gari Singh <[email protected]>
  • Loading branch information
mastersingh24 committed Oct 20, 2017
1 parent 5149604 commit 65686e9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/server.go
Original file line number Diff line number Diff line change
Expand Up @@ -491,7 +491,7 @@ func (s *Server) listenAndServe() (err error) {
}
}
s.listener = listener
log.Infof("Listening on %s", s.Config.Port, addrStr)
log.Infof("Listening on %s", addrStr)

err = s.checkAndEnableProfiling()
if err != nil {
Expand Down

0 comments on commit 65686e9

Please sign in to comment.