修改日志级别

This commit is contained in:
gaibu
2023-09-29 21:34:07 +08:00
parent e7de64ced0
commit 94d458f628
2 changed files with 3 additions and 3 deletions

View File

@@ -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<>();

View File

@@ -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(),