记录异常的修改

web_backend_develope
chenlw 8 years ago
parent d7be376fe2
commit 74939f3cdb

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

Loading…
Cancel
Save