summaryrefslogtreecommitdiffstats
path: root/newton/newton/pub
diff options
context:
space:
mode:
authorBin Yang <bin.yang@windriver.com>2017-03-09 18:01:32 +0800
committerBin Yang <bin.yang@windriver.com>2017-03-09 18:01:32 +0800
commitcb1f27e5b5391636ce9c9eaead911455077bcc1c (patch)
tree60cf8fa19839b1b338d7587084fdcc3fa3c4815d /newton/newton/pub
parentaeca17f196c66dbda339d1efa76b210f34ebce1f (diff)
Remove redundant debug messages
Change-Id: Ida0fe5187265b4e84f2c96eac93400cad68b8cff Issue-Id: MULTIVIM-18 Signed-off-by: Bin Yang <bin.yang@windriver.com>
Diffstat (limited to 'newton/newton/pub')
-rw-r--r--newton/newton/pub/utils/restcall.py14
1 files changed, 7 insertions, 7 deletions
diff --git a/newton/newton/pub/utils/restcall.py b/newton/newton/pub/utils/restcall.py
index ccbe1014..9f36909c 100644
--- a/newton/newton/pub/utils/restcall.py
+++ b/newton/newton/pub/utils/restcall.py
@@ -36,8 +36,8 @@ logger = logging.getLogger(__name__)
def call_req(base_url, user, passwd, auth_type,
resource, method, extra_headers='', content=''):
callid = str(uuid.uuid1())
- logger.debug("[%s]call_req('%s','%s','%s',%s,'%s','%s','%s')" % (
- callid, base_url, user, passwd, auth_type, resource, method, content))
+# logger.debug("[%s]call_req('%s','%s','%s',%s,'%s','%s','%s')" % (
+# callid, base_url, user, passwd, auth_type, resource, method, content))
ret = None
resp_status = None
try:
@@ -65,15 +65,15 @@ def call_req(base_url, user, passwd, auth_type,
headers=headers)
resp_status, resp_body = \
resp['status'], resp_content.decode('UTF-8')
- logger.debug("[%s][%d]status=%s,resp_body=%s)" %
- (callid, retry_times, resp_status, resp_body))
+# logger.debug("[%s][%d]status=%s,resp_body=%s)" %
+# (callid, retry_times, resp_status, resp_body))
if resp_status in status_ok_list:
ret = [0, resp_body, resp_status]
else:
ret = [1, resp_body, resp_status]
break
except httplib.ResponseNotReady:
- logger.debug("retry_times=%d", retry_times)
+# logger.debug("retry_times=%d", retry_times)
ret = [1, "Unable to connect to %s" % full_url, resp_status]
continue
except urllib2.URLError as err:
@@ -85,13 +85,13 @@ def call_req(base_url, user, passwd, auth_type,
resp_status = status.HTTP_500_INTERNAL_SERVER_ERROR
ret = [3, str(sys.exc_info()), resp_status]
- logger.debug("[%s]ret=%s" % (callid, str(ret)))
+# logger.debug("[%s]ret=%s" % (callid, str(ret)))
return ret
def req_by_msb(resource, method, content=''):
base_url = "http://%s:%s/" % (MSB_SERVICE_IP, MSB_SERVICE_PORT)
- logger.debug("Networks--get::> %s" % "33")
+# logger.debug("requests--get::> %s" % "33")
return call_req(base_url, "", "", rest_no_auth,
resource, method, "", content)