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

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


The following commit(s) were added to refs/heads/master by this push:
     new 8cc8933d30e (httpaction) log response of http (#33270)
8cc8933d30e is described below

commit 8cc8933d30e1d76aff71db051c413f286deb7cff
Author: Yongqiang YANG <98214048+dataroar...@users.noreply.github.com>
AuthorDate: Sat Apr 6 21:58:46 2024 +0800

    (httpaction) log response of http (#33270)
---
 .../main/groovy/org/apache/doris/regression/action/HttpCliAction.groovy | 2 ++
 1 file changed, 2 insertions(+)

diff --git 
a/regression-test/framework/src/main/groovy/org/apache/doris/regression/action/HttpCliAction.groovy
 
b/regression-test/framework/src/main/groovy/org/apache/doris/regression/action/HttpCliAction.groovy
index 6cb34349557..8aaf7ef4883 100644
--- 
a/regression-test/framework/src/main/groovy/org/apache/doris/regression/action/HttpCliAction.groovy
+++ 
b/regression-test/framework/src/main/groovy/org/apache/doris/regression/action/HttpCliAction.groovy
@@ -96,6 +96,7 @@ class HttpCliAction implements SuiteAction {
                         resp.withCloseable {
                             String respJson = 
EntityUtils.toString(resp.getEntity())
                             def respCode = resp.getStatusLine().getStatusCode()
+                            log.info("respCode: ${respCode}, respJson: 
${respJson}")
                             return new ActionResult(respCode, respJson)
                         }
                     }
@@ -110,6 +111,7 @@ class HttpCliAction implements SuiteAction {
                         resp.withCloseable {
                             String respJson = 
EntityUtils.toString(resp.getEntity())
                             def respCode = resp.getStatusLine().getStatusCode()
+                            log.info("respCode: ${respCode}, respJson: 
${respJson}")
                             return new ActionResult(respCode, respJson)
                         }
                     }


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org
For additional commands, e-mail: commits-h...@doris.apache.org

Reply via email to