Skip to content

Commit

Permalink
cmd/server: fix HTTP bind log
Browse files Browse the repository at this point in the history
  • Loading branch information
adamdecaf committed Jul 31, 2019
1 parent c590169 commit 96cd04d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cmd/server/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ func main() {
logger.Log("exit", err)
}
} else {
logger.Log("startup", fmt.Sprintf("binding to %s for secure HTTP server", *httpAddr))
logger.Log("startup", fmt.Sprintf("binding to %s for HTTP server", *httpAddr))
if err := serve.ListenAndServe(); err != nil {
logger.Log("exit", err)
}
Expand Down

0 comments on commit 96cd04d

Please sign in to comment.