Skip to content

Commit

Permalink
change log level, update version to 1.2.3.
Browse files Browse the repository at this point in the history
  • Loading branch information
zhanq committed Jan 30, 2024
1 parent c6b7a2e commit 1bbe8b3
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

<groupId>cn.jpush.api</groupId>
<artifactId>jiguang-common</artifactId>
<version>1.2.2</version>
<version>1.2.3</version>
<packaging>jar</packaging>
<url>https://github.com/jpush/jiguang-java-client-common</url>
<name>Jiguang Client Common Dependencies</name>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -459,7 +459,7 @@ public void processResponse(CloseableHttpResponse response, ResponseWrapper wrap

switch (status) {
case 400:
LOG.error("Your request params is invalid. Please check them according to error message.");
LOG.warn("Your request params is invalid. Please check them according to error message.");
wrapper.setErrorObject();
break;
case 401:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@ public void handleResponse(ResponseWrapper wrapper, Request request) throws IOEx

switch (status) {
case 400:
LOG.error("Your request params is invalid. Please check them according to error message.");
LOG.warn("Your request params is invalid. Please check them according to error message.");
wrapper.setErrorObject();
break;
case 401:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -197,7 +197,7 @@ private ResponseWrapper _doRequest(String url, String content,

switch (status) {
case 400:
LOG.error("Your request params is invalid. Please check them according to error message.");
LOG.warn("Your request params is invalid. Please check them according to error message.");
wrapper.setErrorObject();
break;
case 401:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -204,7 +204,7 @@ private ResponseWrapper sendHttpRequest(HttpMethod method, String url, String bo

switch (status) {
case 400:
LOG.error("Your request params is invalid. Please check them according to error message.");
LOG.warn("Your request params is invalid. Please check them according to error message.");
wrapper.setErrorObject();
break;
case 401:
Expand Down

0 comments on commit 1bbe8b3

Please sign in to comment.