We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3409a56 commit cc637f7Copy full SHA for cc637f7
xds/internal/xdsclient/clientimpl.go
@@ -101,7 +101,9 @@ func init() {
101
// attempting to create an xDS client, else xDS client creation will fail.
102
config, err := bootstrap.GetConfiguration()
103
if err != nil {
104
- logger.Warningf("Failed to read xDS bootstrap config from env vars: %v", err)
+ if logger.V(2) {
105
+ logger.Infof("Failed to read xDS bootstrap config from env vars: %v", err)
106
+ }
107
DefaultPool = &Pool{clients: make(map[string]*clientRefCounted)}
108
return
109
}
0 commit comments