Replace println by log.info

pull/6221/head
Qiuyi LI 2024-03-28 10:18:17 +01:00 committed by GitHub
parent e600fde681
commit a82944ee9a
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -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){