From 2b8abea8dfc1a9d85ef588cb1e09017d1075bbbd Mon Sep 17 00:00:00 2001 From: "Joshua M. Boniface" Date: Sat, 9 Dec 2023 02:52:44 -0500 Subject: [PATCH] Remove debug printing --- api-daemon/pvcapid/helper.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/api-daemon/pvcapid/helper.py b/api-daemon/pvcapid/helper.py index 174cf502..243ba82d 100755 --- a/api-daemon/pvcapid/helper.py +++ b/api-daemon/pvcapid/helper.py @@ -135,12 +135,10 @@ def cluster_metrics(zkhandler): status_retflag, status_data = pvc_cluster.get_info(zkhandler) if not status_retflag: return "Error: Status data threw error", 400 - print(status_data) faults_retflag, faults_data = pvc_faults.get_list(zkhandler) if not faults_retflag: return "Error: Faults data threw error", 400 - print(faults_data) retcode = 200 output_lines = list()