记录异常的修改

web_backend_develope
chenlw 8 years ago
parent d7be376fe2
commit 74939f3cdb

@ -111,7 +111,7 @@ public class ThreadCheckoutStandardOracle extends Thread {
//更新数据库
this.updateDataInfo(tmp);
} catch (Exception e) {
log.error(e.getMessage());
log.error(e);
}
}
}
@ -122,7 +122,7 @@ public class ThreadCheckoutStandardOracle extends Thread {
try {
Thread.sleep(1000*60);
} catch (InterruptedException e) {
log.error(e.getMessage());
log.error(e);
}
}
}
@ -253,7 +253,7 @@ public class ThreadCheckoutStandardOracle extends Thread {
log.info("更新replicationController标签 "
+ key + "\t[标签更新为: 已校验]");
} catch (Exception e) {
log.error(e.getStackTrace());
log.error(e);
}
// 成功 就 清除 CacheOracleCheckoutEntity 中 的该条记录
CacheOracleCheckoutEntity.checkRemove(key);

Loading…
Cancel
Save