增加日志

This commit is contained in:
zhangqinbin
2022-07-01 10:33:29 +08:00
parent 3a59fd665d
commit ac6431f328

View File

@ -9,6 +9,7 @@ import com.chinaunicom.mall.ebtp.extend.blockchain.entity.BlockChainLogVo;
import com.chinaunicom.mall.ebtp.extend.crypconfigure.entity.CrypBean; import com.chinaunicom.mall.ebtp.extend.crypconfigure.entity.CrypBean;
import com.chinaunicom.mall.ebtp.extend.crypconfigure.entity.CrypConfigure; import com.chinaunicom.mall.ebtp.extend.crypconfigure.entity.CrypConfigure;
import com.chinaunicom.mall.ebtp.extend.crypconfigure.service.ICrypConfigureService; import com.chinaunicom.mall.ebtp.extend.crypconfigure.service.ICrypConfigureService;
import lombok.RequiredArgsConstructor;
import lombok.extern.slf4j.Slf4j; import lombok.extern.slf4j.Slf4j;
import org.apache.poi.ss.formula.functions.T; import org.apache.poi.ss.formula.functions.T;
import org.springframework.web.bind.annotation.*; import org.springframework.web.bind.annotation.*;
@ -26,6 +27,7 @@ import java.util.List;
@Slf4j @Slf4j
@RestController @RestController
@Api(value = "区块链参数配置表") @Api(value = "区块链参数配置表")
@RequiredArgsConstructor
@RequestMapping("/v1/crypconfigure") @RequestMapping("/v1/crypconfigure")
public class CrypConfigureController{ public class CrypConfigureController{
@ -135,7 +137,7 @@ public class CrypConfigureController{
String str = this.iCrypConfigureService.callUniInterfaceJson(bean); String str = this.iCrypConfigureService.callUniInterfaceJson(bean);
log.info("----调用天擎接口---callUniInterfaceJson-------:"+str); log.info("----调用天擎接口---callUniInterfaceJson-------:"+str);
System.out.println("----调用天擎接口---callUniInterfaceJson-------:"+str); System.out.println("----调用天擎接口---callUniInterfaceJson-------:"+str);
return BaseResponse.success("11111",str); return BaseResponse.success("11111","2222str"+str);
} }
/** /**