Explicitly send the error string to the Fatal log.

This commit is contained in:
Brendan Burns 2015-02-10 07:12:13 -08:00
parent e27d534b87
commit 8f3136cd37

View File

@ -325,7 +325,7 @@ func DefaultClientConfig(flags *pflag.FlagSet) clientcmd.ClientConfig {
func checkErr(err error) {
if err != nil {
glog.FatalDepth(1, err)
glog.FatalDepth(1, err.Error())
}
}