@@ -1138,7 +1138,7 @@ func httpGetAciGw(w http.ResponseWriter, r *http.Request, vars map[string]string
1138
1138
defer collections .aciGwMutex .Unlock ()
1139
1139
obj := collections .aciGws [key ]
1140
1140
if obj == nil {
1141
- log .Errorf ("aciGw %s not found" , key )
1141
+ log .Infof ("aciGw %s not found" , key )
1142
1142
return nil , errors .New ("aciGw not found" )
1143
1143
}
1144
1144
@@ -1482,7 +1482,7 @@ func httpGetAppProfile(w http.ResponseWriter, r *http.Request, vars map[string]s
1482
1482
defer collections .appProfileMutex .Unlock ()
1483
1483
obj := collections .appProfiles [key ]
1484
1484
if obj == nil {
1485
- log .Errorf ("appProfile %s not found" , key )
1485
+ log .Infof ("appProfile %s not found" , key )
1486
1486
return nil , errors .New ("appProfile not found" )
1487
1487
}
1488
1488
@@ -1813,7 +1813,7 @@ func httpGetBgp(w http.ResponseWriter, r *http.Request, vars map[string]string)
1813
1813
defer collections .BgpMutex .Unlock ()
1814
1814
obj := collections .Bgps [key ]
1815
1815
if obj == nil {
1816
- log .Errorf ("Bgp %s not found" , key )
1816
+ log .Infof ("Bgp %s not found" , key )
1817
1817
return nil , errors .New ("Bgp not found" )
1818
1818
}
1819
1819
@@ -2191,7 +2191,7 @@ func httpGetEndpointGroup(w http.ResponseWriter, r *http.Request, vars map[strin
2191
2191
defer collections .endpointGroupMutex .Unlock ()
2192
2192
obj := collections .endpointGroups [key ]
2193
2193
if obj == nil {
2194
- log .Errorf ("endpointGroup %s not found" , key )
2194
+ log .Infof ("endpointGroup %s not found" , key )
2195
2195
return nil , errors .New ("endpointGroup not found" )
2196
2196
}
2197
2197
@@ -2526,7 +2526,7 @@ func httpGetExtContractsGroup(w http.ResponseWriter, r *http.Request, vars map[s
2526
2526
defer collections .extContractsGroupMutex .Unlock ()
2527
2527
obj := collections .extContractsGroups [key ]
2528
2528
if obj == nil {
2529
- log .Errorf ("extContractsGroup %s not found" , key )
2529
+ log .Infof ("extContractsGroup %s not found" , key )
2530
2530
return nil , errors .New ("extContractsGroup not found" )
2531
2531
}
2532
2532
@@ -2857,7 +2857,7 @@ func httpGetGlobal(w http.ResponseWriter, r *http.Request, vars map[string]strin
2857
2857
defer collections .globalMutex .Unlock ()
2858
2858
obj := collections .globals [key ]
2859
2859
if obj == nil {
2860
- log .Errorf ("global %s not found" , key )
2860
+ log .Infof ("global %s not found" , key )
2861
2861
return nil , errors .New ("global not found" )
2862
2862
}
2863
2863
@@ -3198,7 +3198,7 @@ func httpGetNetprofile(w http.ResponseWriter, r *http.Request, vars map[string]s
3198
3198
defer collections .netprofileMutex .Unlock ()
3199
3199
obj := collections .netprofiles [key ]
3200
3200
if obj == nil {
3201
- log .Errorf ("netprofile %s not found" , key )
3201
+ log .Infof ("netprofile %s not found" , key )
3202
3202
return nil , errors .New ("netprofile not found" )
3203
3203
}
3204
3204
@@ -3536,7 +3536,7 @@ func httpGetNetwork(w http.ResponseWriter, r *http.Request, vars map[string]stri
3536
3536
defer collections .networkMutex .Unlock ()
3537
3537
obj := collections .networks [key ]
3538
3538
if obj == nil {
3539
- log .Errorf ("network %s not found" , key )
3539
+ log .Infof ("network %s not found" , key )
3540
3540
return nil , errors .New ("network not found" )
3541
3541
}
3542
3542
@@ -3914,7 +3914,7 @@ func httpGetPolicy(w http.ResponseWriter, r *http.Request, vars map[string]strin
3914
3914
defer collections .policyMutex .Unlock ()
3915
3915
obj := collections .policys [key ]
3916
3916
if obj == nil {
3917
- log .Errorf ("policy %s not found" , key )
3917
+ log .Infof ("policy %s not found" , key )
3918
3918
return nil , errors .New ("policy not found" )
3919
3919
}
3920
3920
@@ -4222,7 +4222,7 @@ func httpGetRule(w http.ResponseWriter, r *http.Request, vars map[string]string)
4222
4222
defer collections .ruleMutex .Unlock ()
4223
4223
obj := collections .rules [key ]
4224
4224
if obj == nil {
4225
- log .Errorf ("rule %s not found" , key )
4225
+ log .Infof ("rule %s not found" , key )
4226
4226
return nil , errors .New ("rule not found" )
4227
4227
}
4228
4228
@@ -4639,7 +4639,7 @@ func httpGetServiceLB(w http.ResponseWriter, r *http.Request, vars map[string]st
4639
4639
defer collections .serviceLBMutex .Unlock ()
4640
4640
obj := collections .serviceLBs [key ]
4641
4641
if obj == nil {
4642
- log .Errorf ("serviceLB %s not found" , key )
4642
+ log .Infof ("serviceLB %s not found" , key )
4643
4643
return nil , errors .New ("serviceLB not found" )
4644
4644
}
4645
4645
@@ -4988,7 +4988,7 @@ func httpGetTenant(w http.ResponseWriter, r *http.Request, vars map[string]strin
4988
4988
defer collections .tenantMutex .Unlock ()
4989
4989
obj := collections .tenants [key ]
4990
4990
if obj == nil {
4991
- log .Errorf ("tenant %s not found" , key )
4991
+ log .Infof ("tenant %s not found" , key )
4992
4992
return nil , errors .New ("tenant not found" )
4993
4993
}
4994
4994
@@ -5296,7 +5296,7 @@ func httpGetVolume(w http.ResponseWriter, r *http.Request, vars map[string]strin
5296
5296
defer collections .volumeMutex .Unlock ()
5297
5297
obj := collections .volumes [key ]
5298
5298
if obj == nil {
5299
- log .Errorf ("volume %s not found" , key )
5299
+ log .Infof ("volume %s not found" , key )
5300
5300
return nil , errors .New ("volume not found" )
5301
5301
}
5302
5302
@@ -5586,7 +5586,7 @@ func httpGetVolumeProfile(w http.ResponseWriter, r *http.Request, vars map[strin
5586
5586
defer collections .volumeProfileMutex .Unlock ()
5587
5587
obj := collections .volumeProfiles [key ]
5588
5588
if obj == nil {
5589
- log .Errorf ("volumeProfile %s not found" , key )
5589
+ log .Infof ("volumeProfile %s not found" , key )
5590
5590
return nil , errors .New ("volumeProfile not found" )
5591
5591
}
5592
5592
0 commit comments