Skip to content

Commit 9d992ce

Browse files
committed
update based on new modelgen with error->log change.
Signed-off-by: Ranjith <[email protected]>
1 parent e00f6dd commit 9d992ce

File tree

1 file changed

+14
-14
lines changed

1 file changed

+14
-14
lines changed

contivModel.go

+14-14
Original file line numberDiff line numberDiff line change
@@ -1138,7 +1138,7 @@ func httpGetAciGw(w http.ResponseWriter, r *http.Request, vars map[string]string
11381138
defer collections.aciGwMutex.Unlock()
11391139
obj := collections.aciGws[key]
11401140
if obj == nil {
1141-
log.Errorf("aciGw %s not found", key)
1141+
log.Infof("aciGw %s not found", key)
11421142
return nil, errors.New("aciGw not found")
11431143
}
11441144

@@ -1482,7 +1482,7 @@ func httpGetAppProfile(w http.ResponseWriter, r *http.Request, vars map[string]s
14821482
defer collections.appProfileMutex.Unlock()
14831483
obj := collections.appProfiles[key]
14841484
if obj == nil {
1485-
log.Errorf("appProfile %s not found", key)
1485+
log.Infof("appProfile %s not found", key)
14861486
return nil, errors.New("appProfile not found")
14871487
}
14881488

@@ -1813,7 +1813,7 @@ func httpGetBgp(w http.ResponseWriter, r *http.Request, vars map[string]string)
18131813
defer collections.BgpMutex.Unlock()
18141814
obj := collections.Bgps[key]
18151815
if obj == nil {
1816-
log.Errorf("Bgp %s not found", key)
1816+
log.Infof("Bgp %s not found", key)
18171817
return nil, errors.New("Bgp not found")
18181818
}
18191819

@@ -2191,7 +2191,7 @@ func httpGetEndpointGroup(w http.ResponseWriter, r *http.Request, vars map[strin
21912191
defer collections.endpointGroupMutex.Unlock()
21922192
obj := collections.endpointGroups[key]
21932193
if obj == nil {
2194-
log.Errorf("endpointGroup %s not found", key)
2194+
log.Infof("endpointGroup %s not found", key)
21952195
return nil, errors.New("endpointGroup not found")
21962196
}
21972197

@@ -2526,7 +2526,7 @@ func httpGetExtContractsGroup(w http.ResponseWriter, r *http.Request, vars map[s
25262526
defer collections.extContractsGroupMutex.Unlock()
25272527
obj := collections.extContractsGroups[key]
25282528
if obj == nil {
2529-
log.Errorf("extContractsGroup %s not found", key)
2529+
log.Infof("extContractsGroup %s not found", key)
25302530
return nil, errors.New("extContractsGroup not found")
25312531
}
25322532

@@ -2857,7 +2857,7 @@ func httpGetGlobal(w http.ResponseWriter, r *http.Request, vars map[string]strin
28572857
defer collections.globalMutex.Unlock()
28582858
obj := collections.globals[key]
28592859
if obj == nil {
2860-
log.Errorf("global %s not found", key)
2860+
log.Infof("global %s not found", key)
28612861
return nil, errors.New("global not found")
28622862
}
28632863

@@ -3198,7 +3198,7 @@ func httpGetNetprofile(w http.ResponseWriter, r *http.Request, vars map[string]s
31983198
defer collections.netprofileMutex.Unlock()
31993199
obj := collections.netprofiles[key]
32003200
if obj == nil {
3201-
log.Errorf("netprofile %s not found", key)
3201+
log.Infof("netprofile %s not found", key)
32023202
return nil, errors.New("netprofile not found")
32033203
}
32043204

@@ -3536,7 +3536,7 @@ func httpGetNetwork(w http.ResponseWriter, r *http.Request, vars map[string]stri
35363536
defer collections.networkMutex.Unlock()
35373537
obj := collections.networks[key]
35383538
if obj == nil {
3539-
log.Errorf("network %s not found", key)
3539+
log.Infof("network %s not found", key)
35403540
return nil, errors.New("network not found")
35413541
}
35423542

@@ -3914,7 +3914,7 @@ func httpGetPolicy(w http.ResponseWriter, r *http.Request, vars map[string]strin
39143914
defer collections.policyMutex.Unlock()
39153915
obj := collections.policys[key]
39163916
if obj == nil {
3917-
log.Errorf("policy %s not found", key)
3917+
log.Infof("policy %s not found", key)
39183918
return nil, errors.New("policy not found")
39193919
}
39203920

@@ -4222,7 +4222,7 @@ func httpGetRule(w http.ResponseWriter, r *http.Request, vars map[string]string)
42224222
defer collections.ruleMutex.Unlock()
42234223
obj := collections.rules[key]
42244224
if obj == nil {
4225-
log.Errorf("rule %s not found", key)
4225+
log.Infof("rule %s not found", key)
42264226
return nil, errors.New("rule not found")
42274227
}
42284228

@@ -4639,7 +4639,7 @@ func httpGetServiceLB(w http.ResponseWriter, r *http.Request, vars map[string]st
46394639
defer collections.serviceLBMutex.Unlock()
46404640
obj := collections.serviceLBs[key]
46414641
if obj == nil {
4642-
log.Errorf("serviceLB %s not found", key)
4642+
log.Infof("serviceLB %s not found", key)
46434643
return nil, errors.New("serviceLB not found")
46444644
}
46454645

@@ -4988,7 +4988,7 @@ func httpGetTenant(w http.ResponseWriter, r *http.Request, vars map[string]strin
49884988
defer collections.tenantMutex.Unlock()
49894989
obj := collections.tenants[key]
49904990
if obj == nil {
4991-
log.Errorf("tenant %s not found", key)
4991+
log.Infof("tenant %s not found", key)
49924992
return nil, errors.New("tenant not found")
49934993
}
49944994

@@ -5296,7 +5296,7 @@ func httpGetVolume(w http.ResponseWriter, r *http.Request, vars map[string]strin
52965296
defer collections.volumeMutex.Unlock()
52975297
obj := collections.volumes[key]
52985298
if obj == nil {
5299-
log.Errorf("volume %s not found", key)
5299+
log.Infof("volume %s not found", key)
53005300
return nil, errors.New("volume not found")
53015301
}
53025302

@@ -5586,7 +5586,7 @@ func httpGetVolumeProfile(w http.ResponseWriter, r *http.Request, vars map[strin
55865586
defer collections.volumeProfileMutex.Unlock()
55875587
obj := collections.volumeProfiles[key]
55885588
if obj == nil {
5589-
log.Errorf("volumeProfile %s not found", key)
5589+
log.Infof("volumeProfile %s not found", key)
55905590
return nil, errors.New("volumeProfile not found")
55915591
}
55925592

0 commit comments

Comments
 (0)