Skip to content

Commit 26f0495

Browse files
authored
Remove verbose feature missing logs (#102)
1 parent a559828 commit 26f0495

File tree

2 files changed

+2
-4
lines changed

2 files changed

+2
-4
lines changed

src/sonic_ax_impl/mibs/ietf/rfc1213.py

+1-2
Original file line numberDiff line numberDiff line change
@@ -277,8 +277,7 @@ def get_counter(self, sub_id, table_name):
277277

278278
if oid in self.mgmt_oid_name_map:
279279
# TODO: mgmt counters not available through SNMP right now
280-
# COUNTERS DB does not have suppot for generic linux (mgmt) interface counters
281-
mibs.logger.warning('management interface counters not available through SNMP right now')
280+
# COUNTERS DB does not have support for generic linux (mgmt) interface counters
282281
return 0
283282
elif oid in self.oid_lag_name_map:
284283
counter_value = 0

src/sonic_ax_impl/mibs/ietf/rfc2863.py

+1-2
Original file line numberDiff line numberDiff line change
@@ -171,8 +171,7 @@ def _get_counter(self, oid, table_name, mask):
171171

172172
if oid in self.mgmt_oid_name_map:
173173
# TODO: mgmt counters not available through SNMP right now
174-
# COUNTERS DB does not have suppot for generic linux (mgmt) interface counters
175-
mibs.logger.warning('management interface counters not available through SNMP right now')
174+
# COUNTERS DB does not have support for generic linux (mgmt) interface counters
176175
return 0
177176

178177
if oid in self.oid_lag_name_map:

0 commit comments

Comments
 (0)