Return detailed msg for notification errors (#5913)

This commit is contained in:
Anis Elleuch
2018-05-09 15:11:24 -07:00
committed by Dee Koder
parent c1f1fa3cc8
commit c525424179
4 changed files with 15 additions and 15 deletions
+1 -1
View File
@@ -48,7 +48,7 @@ func mustSplitHostPort(hostPort string) (host, port string) {
func mustGetLocalIP4() (ipList set.StringSet) {
ipList = set.NewStringSet()
addrs, err := net.InterfaceAddrs()
logger.FatalIf(err, "Unable to get IP addresses of this host.")
logger.FatalIf(err, "Unable to get IP addresses of this host")
for _, addr := range addrs {
var ip net.IP