This is an automated email from the ASF dual-hosted git repository.
Caideyipi pushed a commit to branch dev/1.3
in repository https://gitbox.apache.org/repos/asf/iotdb.git
The following commit(s) were added to refs/heads/dev/1.3 by this push:
new 0f253d8e65b Degraded the UT logs (#17782)
0f253d8e65b is described below
commit 0f253d8e65b8b1cea7bb108bc2e859af54106580
Author: Caideyipi <[email protected]>
AuthorDate: Thu May 28 15:52:27 2026 +0800
Degraded the UT logs (#17782)
* Degraded the UT logs
(cherry picked from commit 65cd197600d3502160ced4a9f0c25ef7552011ab)
* Update TsFileInsertionDataContainer.java
---
.../container/TsFileInsertionDataContainer.java | 22 ++++++++++++----------
1 file changed, 12 insertions(+), 10 deletions(-)
diff --git
a/iotdb-core/datanode/src/main/java/org/apache/iotdb/db/pipe/event/common/tsfile/container/TsFileInsertionDataContainer.java
b/iotdb-core/datanode/src/main/java/org/apache/iotdb/db/pipe/event/common/tsfile/container/TsFileInsertionDataContainer.java
index f335cff1035..1eb620e84be 100644
---
a/iotdb-core/datanode/src/main/java/org/apache/iotdb/db/pipe/event/common/tsfile/container/TsFileInsertionDataContainer.java
+++
b/iotdb-core/datanode/src/main/java/org/apache/iotdb/db/pipe/event/common/tsfile/container/TsFileInsertionDataContainer.java
@@ -97,16 +97,18 @@ public abstract class TsFileInsertionDataContainer
implements AutoCloseable {
.forceAllocateForTabletWithRetry(
IoTDBDescriptor.getInstance().getConfig().getPipeDataStructureTabletSizeInBytes());
- LOGGER.info(
- "TsFile {} has initialized {}, pipeName: {}, creation time: {},
pattern: {}, startTime: {}, endTime: {}, withMod: {}",
- tsFile,
- getClass().getSimpleName(),
- pipeName,
- creationTime,
- pattern,
- startTime,
- endTime,
- isWithMod);
+ if (LOGGER.isDebugEnabled()) {
+ LOGGER.debug(
+ "TsFile {} has initialized {}, pipeName: {}, creation time: {},
pattern: {}, startTime: {}, endTime: {}, withMod: {}",
+ tsFile,
+ getClass().getSimpleName(),
+ pipeName,
+ creationTime,
+ pattern,
+ startTime,
+ endTime,
+ isWithMod);
+ }
}
/**