From 4eb36ee8cabbc59577b7e557640dac93b0bbf86a Mon Sep 17 00:00:00 2001 From: mnianqi Date: Tue, 4 Aug 2026 14:53:28 +0800 Subject: [PATCH] fix: TAP-12434 optimize excel log --- .../main/java/io/tapdata/connector/excel/ExcelConnector.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/connectors/excel-connector/src/main/java/io/tapdata/connector/excel/ExcelConnector.java b/connectors/excel-connector/src/main/java/io/tapdata/connector/excel/ExcelConnector.java index 1f363b692..0a4654f72 100644 --- a/connectors/excel-connector/src/main/java/io/tapdata/connector/excel/ExcelConnector.java +++ b/connectors/excel-connector/src/main/java/io/tapdata/connector/excel/ExcelConnector.java @@ -137,7 +137,7 @@ private void checkCellType(Integer col, Cell cell, Map cellTy } CellType cellType = cellTypeMap.get(col); if (checkLevel(cellType) != checkLevel(cell.getCellType())) { - tapLogger.warn(String.format("The data type of line %s, column %s is inconsistent, please check the data in the excel file", cell.getRowIndex() + 1, col + 1)); + tapLogger.info(String.format("The data type of line %s, column %s is inconsistent, please check the data in the excel file", cell.getRowIndex() + 1, col + 1)); } }