|
|
@@ -139,7 +139,11 @@ public class LinePay implements Serializable {
|
|
|
|
|
|
HttpPost request = new HttpPost(lineConfig.payUrl);
|
|
|
|
|
|
- setHeaderAndEntity(request, mapper.writeValueAsString(sendBody));
|
|
|
+ String sendBodyStr = mapper.writeValueAsString(sendBody);
|
|
|
+
|
|
|
+ log.info(sendBodyStr);
|
|
|
+
|
|
|
+ setHeaderAndEntity(request, sendBodyStr);
|
|
|
|
|
|
response = client.execute(request, httpResponse ->
|
|
|
mapper.readValue(EntityUtils.toString(httpResponse.getEntity()), LinePayAPOD.class));
|