liyuheng55555 commented on code in PR #12856:
URL: https://github.com/apache/iotdb/pull/12856#discussion_r1669536322
##########
iotdb-core/datanode/src/main/java/org/apache/iotdb/db/storageengine/dataregion/DataRegion.java:
##########
@@ -1063,6 +1065,10 @@ private boolean insertTabletToTsFileProcessor(
long timePartitionId) {
// return when start >= end or all measurement failed
if (start >= end || insertTabletNode.allMeasurementFailed()) {
+ logger.info(
+ "Won't insert tablet {}, because {}",
+ insertTabletNode.getSearchIndex(),
+ start >= end ? "start >= end" : "insertTabletNode
allMeasurementFailed");
Review Comment:
change to logger.debug
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]