From e33e44b676b64063bc5c4bd995e04e0c3833be28 Mon Sep 17 00:00:00 2001 From: Liz Rice Date: Fri, 17 May 2019 14:22:04 +0100 Subject: [PATCH] Correct debug messages --- cmd/util.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cmd/util.go b/cmd/util.go index 29b7d69..fcb537f 100644 --- a/cmd/util.go +++ b/cmd/util.go @@ -241,11 +241,11 @@ func getKubeConfigFiles(v *viper.Viper) map[string]string { glog.V(2).Info(fmt.Sprintf("Using default kubeconfig file name '%s' for component %s", kubeconfig, component)) } else { // Default the service file name that we'll substitute to the name of the component - glog.V(2).Info(fmt.Sprintf("Missing service file for %s", component)) + glog.V(2).Info(fmt.Sprintf("Missing kubeconfig file for %s", component)) kubeconfig = component } } else { - glog.V(2).Info(fmt.Sprintf("Component %s uses service file '%s'", component, kubeconfig)) + glog.V(2).Info(fmt.Sprintf("Component %s uses kubeconfig file '%s'", component, kubeconfig)) } kubeconfigmap[component] = kubeconfig