From 1915e589cda7a49c34c6a60ad3a8b1bd9570451b Mon Sep 17 00:00:00 2001 From: Abhishek Jain Date: Fri, 24 Mar 2017 17:03:29 -0400 Subject: [PATCH] Made a tiny change in the logging message in AddHostIfNew(..) function --- utilities/offerUtils/offerUtils.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/utilities/offerUtils/offerUtils.go b/utilities/offerUtils/offerUtils.go index 1f4644c..cb68ead 100644 --- a/utilities/offerUtils/offerUtils.go +++ b/utilities/offerUtils/offerUtils.go @@ -70,7 +70,7 @@ func AddHostIfNew(offer *mesos.Offer) { var host = offer.GetHostname() // If this host is not present in the set of hosts. if _, ok := constants.Hosts[host]; !ok { - log.Printf("New host found. Adding host [%s]", host) + log.Printf("New host detected. Adding host [%s]", host) // Add this host. constants.Hosts[host] = struct{}{} // Get the power class of this host.