From dc03f7f89b341b05be9b6b47ed15976967961282 Mon Sep 17 00:00:00 2001 From: wangxin Date: Tue, 13 Nov 2018 15:39:53 +0800 Subject: [PATCH] =?UTF-8?q?=E5=8E=BB=E6=8E=89=E6=97=A0=E7=94=A8=E7=9A=84?= =?UTF-8?q?=E8=AD=A6=E5=91=8A=E6=97=A5=E5=BF=97=E6=89=93=E5=8D=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/main/java/com/nis/web/service/basics/AsnIpCfgService.java | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/main/java/com/nis/web/service/basics/AsnIpCfgService.java b/src/main/java/com/nis/web/service/basics/AsnIpCfgService.java index 85513ff3f..a83c7f529 100644 --- a/src/main/java/com/nis/web/service/basics/AsnIpCfgService.java +++ b/src/main/java/com/nis/web/service/basics/AsnIpCfgService.java @@ -235,7 +235,6 @@ public class AsnIpCfgService extends CrudService, AsnIpCfg> { public void saveAsnIpBatch(List cfgs){ //需要通过新增域接口新增的ip集合 List toAddRegionAsnIpCfgs=Lists.newArrayList(); - logger.warn("process configGroupInfo and delete IP start"); long start=System.currentTimeMillis(); for(AsnIpCfg cfg:cfgs) { if(Constants.VALID_YES==cfg.getIsValid().intValue()) { @@ -243,7 +242,6 @@ public class AsnIpCfgService extends CrudService, AsnIpCfg> { } } long end=System.currentTimeMillis(); - logger.warn("process configGroupInfo and delete IP finish,cost:"+(end-start)); this.save(cfgs); cfgs.clear(); splitAndSend(toAddRegionAsnIpCfgs,Constants.VALID_YES);