mirror of https://github.com/jeecgboot/jeecg-boot
Replace println by log.info
parent
e600fde681
commit
a82944ee9a
|
@ -47,7 +47,7 @@ public abstract class Request {
|
|||
headers.add(HttpHeaders.CONTENT_TYPE, "application/json");
|
||||
|
||||
String bodyString = generateJsonBodyString(body);
|
||||
System.out.println("JSON SENT : " + bodyString);
|
||||
log.info("JSON SENT : " + bodyString);
|
||||
String signature = authorization(bodyString);
|
||||
headers.add("Authorization", signature);
|
||||
while (attempts++ < 5){
|
||||
|
|
Loading…
Reference in New Issue