Skip to content

Commit 2e6fc21

Browse files
committed
warn-enable
1 parent 9d84c96 commit 2e6fc21

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

iotdb-core/datanode/src/main/java/org/apache/iotdb/db/pipe/event/common/tablet/parser/TabletInsertionEventTablePatternParser.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -100,15 +100,15 @@ protected void generateColumnIndexMapper(
100100

101101
@Override
102102
public List<TabletInsertionEvent> processRowByRow(BiConsumer<Row, RowCollector> consumer) {
103-
if (LOGGER.isDebugEnabled()) {
103+
if (LOGGER.isWarnEnabled()) {
104104
LOGGER.warn("TablePatternParser does not support row by row processing");
105105
}
106106
return Collections.emptyList();
107107
}
108108

109109
@Override
110110
public List<TabletInsertionEvent> processTablet(BiConsumer<Tablet, RowCollector> consumer) {
111-
if (LOGGER.isDebugEnabled()) {
111+
if (LOGGER.isWarnEnabled()) {
112112
LOGGER.warn("TablePatternParser does not support tablet processing");
113113
}
114114
return Collections.emptyList();
@@ -117,7 +117,7 @@ public List<TabletInsertionEvent> processTablet(BiConsumer<Tablet, RowCollector>
117117
@Override
118118
public List<TabletInsertionEvent> processTabletWithCollect(
119119
BiConsumer<Tablet, TabletCollector> consumer) {
120-
if (LOGGER.isDebugEnabled()) {
120+
if (LOGGER.isWarnEnabled()) {
121121
LOGGER.warn("TablePatternParser does not support tablet processing with collect");
122122
}
123123
return Collections.emptyList();

0 commit comments

Comments
 (0)