From de7e73ff507afb91f9e7f43a044df994e0e9cce6 Mon Sep 17 00:00:00 2001 From: Abhishek Jain Date: Sat, 25 Mar 2017 20:27:40 -0400 Subject: [PATCH] Changed a log message in the UpdateEnvironment(..) func. --- 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 a6013ed..f90480e 100644 --- a/utilities/offerUtils/offerUtils.go +++ b/utilities/offerUtils/offerUtils.go @@ -75,7 +75,7 @@ func UpdateEnvironment(offer *mesos.Offer) { constants.Hosts[host] = struct{}{} // Get the power class of this host. class := offerUtils.PowerClass(offer) - log.Printf("Registering the power class of this host [%s] --> [%s]", host, class) + log.Printf("Registering the power class... Host [%s] --> PowerClass [%s]", host, class) // If new power class, register the power class. if _, ok := constants.PowerClasses[class]; !ok { constants.PowerClasses[class] = make(map[string]struct{})