fix log string

This commit is contained in:
Vivek
2024-11-04 13:02:59 -08:00
committed by GitHub
parent c3ae83da33
commit a6390a1433

View File

@@ -96,7 +96,7 @@ func InitPrometheus(prometheusHost, prometheusPort, prometheusEntry string) {
serveOnUnixSocket(socketPath)
} else {
ipPort := prometheusHost+":"+prometheusPort
glog.Infof("Starting Prometheus on IP port %v:%v, entry point is /%v", ipPort, prometheusEntry)
glog.Infof("Starting Prometheus on IP port %v, entry point is /%v", ipPort, prometheusEntry)
serveOnIpPort(ipPort)
}