From 346e9a6ad0894eea712ae01a6b3cda2e2a651755 Mon Sep 17 00:00:00 2001 From: Timo Date: Thu, 11 Jun 2020 12:16:37 +0200 Subject: [PATCH] correct logging level --- project_usage_exporter.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/project_usage_exporter.py b/project_usage_exporter.py index fd94a43..a384f6f 100755 --- a/project_usage_exporter.py +++ b/project_usage_exporter.py @@ -617,7 +617,7 @@ def main(): x['resource_set_timestamp']: {'memory_mb': {y['value']: y['weight'] for y in x['memory_mb']}, 'vcpus': {y['value']: y['weight'] for y in x['vcpus']}} for x in weight_response.json()} - logging.info("Updated credits weights, new weights: " + str(current_weights)) + logging.debug("Updated credits weights, new weights: " + str(current_weights)) exporter.update_weights(current_weights) except Exception as e: logging.exception(