You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@hawq.apache.org by hu...@apache.org on 2019/03/16 03:36:18 UTC

[hawq] 03/06: HAWQ-1683. Using DEBUG3 instead INFO log in cloudrest.c

This is an automated email from the ASF dual-hosted git repository.

huor pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/hawq.git

commit c72a3f5674327260741139f9c3ccc8154579339c
Author: wcl14 <wa...@126.com>
AuthorDate: Thu Jun 28 11:24:48 2018 +0800

    HAWQ-1683. Using DEBUG3 instead INFO log in cloudrest.c
---
 src/backend/libpq/cloudrest.c | 12 ++++++------
 1 file changed, 6 insertions(+), 6 deletions(-)

diff --git a/src/backend/libpq/cloudrest.c b/src/backend/libpq/cloudrest.c
index 4ef0412..3d0eb08 100644
--- a/src/backend/libpq/cloudrest.c
+++ b/src/backend/libpq/cloudrest.c
@@ -130,7 +130,7 @@ static int call_cloud_rest(CURL_HANDLE curl_handle, const char* request, char *a
 	appendStringInfo(&tname, "/");
 	appendStringInfo(&tname, "%s", action);
 	curl_easy_setopt(curl_handle->curl_handle, CURLOPT_URL, tname.data);
-	elog(INFO, "in call_cloud_rest: %s", tname.data);
+	elog(DEBUG3, "in call_cloud_rest: %s", tname.data);
 	pfree(tname.data);
 
 	struct curl_slist *headers = NULL;
@@ -139,7 +139,7 @@ static int call_cloud_rest(CURL_HANDLE curl_handle, const char* request, char *a
 		char buf[512];
 		memset(buf, 0, sizeof(buf));
 		sprintf(buf, "token:%s", pg_cloud_token);
-		elog(INFO, "in call_cloud_rest: %s", buf);
+		elog(DEBUG3, "in call_cloud_rest: %s", buf);
 		headers = curl_slist_append(headers, buf);
 	}
 	curl_easy_setopt(curl_handle->curl_handle, CURLOPT_HTTPHEADER, headers);
@@ -195,7 +195,7 @@ static int parse_cloud_auth_response(char* buffer, int *result, char **errormsg)
 	pg_cloud_token = (char *)palloc0(len + 1);
 	memcpy(pg_cloud_token, token, len);
 	MemoryContextSwitchTo(old);
-	elog(INFO, "in parse_cloud_auth_response, token(%p): %s", pg_cloud_token, pg_cloud_token);
+	elog(DEBUG3, "in parse_cloud_auth_response, token(%p): %s", pg_cloud_token, pg_cloud_token);
 
 	struct json_object *jcreaterole = NULL;
 	if (!json_object_object_get_ex(response, "cancreateuser", &jcreaterole))
@@ -204,7 +204,7 @@ static int parse_cloud_auth_response(char* buffer, int *result, char **errormsg)
 		return -1;
 	}
 	pg_cloud_createrole = json_object_get_boolean(jcreaterole);
-	elog(INFO, "pg_cloud_createrole=%d", pg_cloud_createrole);
+	elog(DEBUG3, "pg_cloud_createrole=%d", pg_cloud_createrole);
 
 	struct json_object *jresult = NULL;
 	if (!json_object_object_get_ex(response, "result", &jresult))
@@ -260,7 +260,7 @@ static int parse_cloud_sync_response(char* buffer, int *result, char **errormsg)
 	}
 
 	int ok = json_object_get_boolean(jresult);
-	elog(INFO, "in parse_cloud_sync_response, ret=%d", ok);
+	elog(DEBUG3, "in parse_cloud_sync_response, ret=%d", ok);
 	if (ok == 0)
 	{
 		*result = CLOUDSYNC_OK;
@@ -441,6 +441,6 @@ int check_authentication_from_cloud(char *username, char *password,
 		curl_context_cloud.response.response_size = 0;
 	}
 
-	elog(INFO, "in check_authentication_from_cloud: ret=%d", result);
+	elog(DEBUG3, "in check_authentication_from_cloud: ret=%d", result);
 	return result;
 }