fix log string

This commit is contained in:
Vivek 2024-11-04 13:02:59 -08:00 committed by GitHub
parent c3ae83da33
commit a6390a1433
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

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)
}