|
|
@@ -53,7 +53,7 @@ public abstract class AbstractDefaultRemoteCallService implements IRemoteCallSer
|
|
|
Optional.ofNullable(callRespEntity).ifPresent(e -> errorMsg.append(",\n errorMsg:").append(e.getMsg()));
|
|
|
ExceptionCast.cast(errorMsg.toString());
|
|
|
}
|
|
|
- log.info("call successful, methodUrl: {},\n requestBody: {},\n callRespEntity: {}", methodUrl, requestBodyStr, JSON.toJSONString(callRespEntity));
|
|
|
+ log.info("call successful, methodUrl: {},\n requestBody: {}", methodUrl, requestBodyStr);
|
|
|
return JSON.parseObject(JSON.toJSONString(callRespEntity.getData()), responseBody);
|
|
|
} catch (Exception e) {
|
|
|
log.error("call failed, methodUrl: {},\n requestBody: {},\n errorMsg: {}", methodUrl, requestBodyStr, e.toString());
|