@@ -117,7 +117,7 @@ func (ss *scaleSet) getVMSS(vmssName string, crt cacheReadType) (*compute.Virtua
117
117
return vmss , nil
118
118
}
119
119
120
- klog .V (3 ).Infof ("Couldn't find VMSS with name %s, refreshing the cache" , vmssName )
120
+ klog .V (2 ).Infof ("Couldn't find VMSS with name %s, refreshing the cache" , vmssName )
121
121
ss .vmssCache .Delete (vmssKey )
122
122
vmss , err = getter (vmssName )
123
123
if err != nil {
@@ -161,7 +161,7 @@ func (ss *scaleSet) getVmssVM(nodeName string, crt cacheReadType) (string, strin
161
161
}
162
162
163
163
if ! found {
164
- klog .V (3 ).Infof ("Couldn't find VMSS VM with nodeName %s, refreshing the cache" , nodeName )
164
+ klog .V (2 ).Infof ("Couldn't find VMSS VM with nodeName %s, refreshing the cache" , nodeName )
165
165
vmssName , instanceID , vm , found , err = getter (nodeName , cacheReadTypeForceRefresh )
166
166
if err != nil {
167
167
return "" , "" , nil , err
@@ -231,7 +231,7 @@ func (ss *scaleSet) getVmssVMByInstanceID(resourceGroup, scaleSetName, instanceI
231
231
return nil , err
232
232
}
233
233
if ! found {
234
- klog .V (3 ).Infof ("Couldn't find VMSS VM with scaleSetName %q and instanceID %q, refreshing the cache" , scaleSetName , instanceID )
234
+ klog .V (2 ).Infof ("Couldn't find VMSS VM with scaleSetName %q and instanceID %q, refreshing the cache" , scaleSetName , instanceID )
235
235
vm , found , err = getter (cacheReadTypeForceRefresh )
236
236
if err != nil {
237
237
return nil , err
0 commit comments