Skip to content
This repository has been archived by the owner on Sep 1, 2024. It is now read-only.

Commit

Permalink
fatal message should be in its own line
Browse files Browse the repository at this point in the history
  • Loading branch information
tomcz committed Dec 14, 2020
1 parent 3373de9 commit d8c8eb6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion server.go
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ func StartMetricsServer(bindAddr, metricsPath string) {

err := http.ListenAndServe(bindAddr, mux)
if err != nil {
log.Fatal("http listener failed, error is:", err)
log.Fatalln("http listener failed, error is:", err)
}
}

Expand Down

0 comments on commit d8c8eb6

Please sign in to comment.