Commit 3b31a26d by huangfusuper

还原日志

parent efed4bac
......@@ -7,7 +7,6 @@ import com.byit.registry.admin.core.util.JacksonUtil;
import com.byit.registry.admin.service.IRegistryService;
import com.byit.registry.client.model.RegistryDataParamVO;
import com.byit.registry.client.model.RegistryParamVO;
import lombok.extern.slf4j.Slf4j;
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.RequestBody;
import org.springframework.web.bind.annotation.RequestMapping;
......@@ -21,7 +20,6 @@ import java.util.Map;
@Controller
@RequestMapping("/api")
@Slf4j
public class ApiController {
@Resource
......@@ -67,7 +65,7 @@ public class ApiController {
try {
registryParamVO = JacksonUtil.readValue(data, RegistryParamVO.class);
} catch (Exception e) {
log.error(e.getMessage());
System.err.println(e.getMessage());
}
// parse param
......@@ -199,7 +197,7 @@ public class ApiController {
//注册数据就是从这里加载的
registryParamVO = JacksonUtil.readValue(data, RegistryParamVO.class);
} catch (Exception e) {
log.error("{}",e.getMessage());
System.err.println(e.getMessage());
}
// parse param
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment