From a7ac0339fdf60feb7404d5eb0cbb7ed5a0334054 Mon Sep 17 00:00:00 2001 From: Thomas Stromberg Date: Fri, 31 Jan 2020 13:24:30 -0800 Subject: [PATCH] Address eview feedback --- pkg/addons/addons.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkg/addons/addons.go b/pkg/addons/addons.go index 29a04fa51b..29c58029fc 100644 --- a/pkg/addons/addons.go +++ b/pkg/addons/addons.go @@ -146,7 +146,7 @@ func enableOrDisableAddon(name, val, profile string) error { host, err := cluster.CheckIfHostExistsAndLoad(api, profile) if err != nil || !cluster.IsHostRunning(api, profile) { - glog.Warningf("%q is not running, writing to %s=%v disk and skipping the rest (err=%v)", profile, addon.Name(), enable, err) + glog.Warningf("%q is not running, writing %s=%v to disk and skipping enablement (err=%v)", profile, addon.Name(), enable, err) return nil } @@ -242,7 +242,7 @@ func enableOrDisableStorageClasses(name, val, profile string) error { defer api.Close() if !cluster.IsHostRunning(api, profile) { - glog.Warningf("%q is not running, writing to %s=%v disk and skipping enablement", profile, name, val) + glog.Warningf("%q is not running, writing %s=%v to disk and skipping enablement", profile, name, val) return enableOrDisableAddon(name, val, profile) }