util: rename FatalLog to FatalLogMsg for parity

rename FatalLog to FatalLogMsg to keep functions
in parity functions ends with Msg if its only message
logging.

Signed-off-by: Madhu Rajanna <madhupr007@gmail.com>
This commit is contained in:
Madhu Rajanna
2020-08-11 17:24:12 +05:30
committed by mergify[bot]
parent 71a6dc3ba8
commit eeb0859f99
3 changed files with 5 additions and 5 deletions

View File

@ -21,6 +21,6 @@ func StartMetricsServer(c *Config) {
http.Handle(c.MetricsPath, promhttp.Handler())
err := http.ListenAndServe(addr, nil)
if err != nil {
FatalLog("failed to listen on address %v: %s", addr, err)
FatalLogMsg("failed to listen on address %v: %s", addr, err)
}
}