Move the loader file log level to v(6)

It's extremely rare that a user *must* have this, and we typically test
and verify at V(5) to get debugging info, which clogs up e2e output.
This commit is contained in:
Clayton Coleman 2016-01-24 19:08:20 -05:00
parent 5abfb43b64
commit a2f68e2591

View File

@ -226,7 +226,7 @@ func LoadFromFile(filename string) (*clientcmdapi.Config, error) {
if err != nil {
return nil, err
}
glog.V(3).Infoln("Config loaded from file", filename)
glog.V(6).Infoln("Config loaded from file", filename)
// set LocationOfOrigin on every Cluster, User, and Context
for key, obj := range config.AuthInfos {