mirror of
https://github.com/k3s-io/kubernetes.git
synced 2025-08-11 21:12:07 +00:00
Fixed log message in client-go
An example of incorrect log message: { "component":"virtctl", "level":"info", "msg":"Config loaded from fileocp/auth/kubeconfig", "pos":"loader.go:359", "timestamp":"2019-03-07T18:50:20.923470Z" } Note how the resulting message has no characters between the text and file name.
This commit is contained in:
parent
18cc11566f
commit
65fb63a154
@ -356,7 +356,7 @@ func LoadFromFile(filename string) (*clientcmdapi.Config, error) {
|
||||
if err != nil {
|
||||
return nil, err
|
||||
}
|
||||
klog.V(6).Infoln("Config loaded from file", filename)
|
||||
klog.V(6).Infoln("Config loaded from file: ", filename)
|
||||
|
||||
// set LocationOfOrigin on every Cluster, User, and Context
|
||||
for key, obj := range config.AuthInfos {
|
||||
|
Loading…
Reference in New Issue
Block a user