mirror of
https://gitee.com/dromara/liteFlow.git
synced 2026-05-14 20:22:07 +08:00
修改日志级别
This commit is contained in:
@@ -36,7 +36,7 @@ public abstract class AbstractSqlReadPollTask implements SqlReadPollTask {
|
||||
public void execute() {
|
||||
Map<String/*唯一键*/, String/*data-xml*/> newData = read.read();
|
||||
// 新增或者更新的元素
|
||||
Map<String, String> saveElementMap = new HashMap();
|
||||
Map<String, String> saveElementMap = new HashMap<>();
|
||||
// 删除的元素
|
||||
List<String> deleteElementIds = new ArrayList<>();
|
||||
|
||||
|
||||
@@ -126,7 +126,7 @@ public class JDBCHelper {
|
||||
try {
|
||||
SqlReadFactory.getSqlReadPollTask(ReadType.CHAIN).execute();
|
||||
} catch (Exception ex) {
|
||||
LOG.info("poll chain fail", ex);
|
||||
LOG.error("poll chain fail", ex);
|
||||
}
|
||||
},
|
||||
sqlParserVO.getPollingStartSeconds().longValue(),
|
||||
@@ -140,7 +140,7 @@ public class JDBCHelper {
|
||||
try {
|
||||
SqlReadFactory.getSqlReadPollTask(ReadType.SCRIPT).execute();
|
||||
} catch (Exception ex) {
|
||||
LOG.info("poll script fail", ex);
|
||||
LOG.error("poll script fail", ex);
|
||||
}
|
||||
},
|
||||
sqlParserVO.getPollingStartSeconds().longValue(),
|
||||
|
||||
Reference in New Issue
Block a user