Stop calling LOG.info on every function calls

These are extremely verbose and pollute logs.

Change-Id: Ic17adf118e18b91e884601e3c35e528c97368618
(cherry picked from commit 45fefb8171)
This commit is contained in:
Dmitry Tantsur 2020-05-13 15:15:41 +02:00
parent ce5e422a75
commit 66dc3e29d0
1 changed files with 0 additions and 7 deletions

View File

@ -82,8 +82,6 @@ IPMI_METRICS_DESCRIPTION = json.load(open(IPMI_JSON))
def metric_names(category_info):
LOG.info('metric_names function called with data=%s' % str(category_info))
metric_dic = {}
extract_unit = category_info.get('extra_params').get('extract_unit')
special_label = category_info.get('extra_params').get('special_label')
@ -158,9 +156,6 @@ def extract_labels(entries, category_info):
returns: a dictionary of dictionaries {<entry>: {label_name: label_value}}
"""
LOG.info('extract_labels function called with: entries=%s | data=%s | \
node_name=%s' % (str(entries), str(category_info['data']),
category_info['node_name']))
if len(entries) == 1:
status = category_info['data'][entries[0]].get('Status')
labels = {'node_name': category_info['node_name'],
@ -191,8 +186,6 @@ def extract_labels(entries, category_info):
def extract_values(entries, category_info):
LOG.info('extract_values function called with: entries=%s | info=%s |'
% (str(entries), str(category_info['data'])))
values = {}
for entry in entries:
try: