This is an automated email from the ASF dual-hosted git repository.
jt2594838 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 60fd1e2ffe1 Change schema region sync logs to debug (#18632) (#18635)
60fd1e2ffe1 is described below
commit 60fd1e2ffe11ce462f1102941d9c656ef2eaf159
Author: Caideyipi <[email protected]>
AuthorDate: Tue Sep 15 14:44:49 2026 +0800
Change schema region sync logs to debug (#18632) (#18635)
(cherry picked from commit 0f9f1ebb3006e1f29568c6eb10f1d2dca921e197)
---
.../db/pipe/sink/protocol/airgap/IoTDBSchemaRegionAirGapSink.java | 2 +-
.../db/pipe/sink/protocol/thrift/sync/IoTDBSchemaRegionSink.java | 4 ++--
2 files changed, 3 insertions(+), 3 deletions(-)
diff --git
a/iotdb-core/datanode/src/main/java/org/apache/iotdb/db/pipe/sink/protocol/airgap/IoTDBSchemaRegionAirGapSink.java
b/iotdb-core/datanode/src/main/java/org/apache/iotdb/db/pipe/sink/protocol/airgap/IoTDBSchemaRegionAirGapSink.java
index 2c0e0327048..8737d47e431 100644
---
a/iotdb-core/datanode/src/main/java/org/apache/iotdb/db/pipe/sink/protocol/airgap/IoTDBSchemaRegionAirGapSink.java
+++
b/iotdb-core/datanode/src/main/java/org/apache/iotdb/db/pipe/sink/protocol/airgap/IoTDBSchemaRegionAirGapSink.java
@@ -256,7 +256,7 @@ public class IoTDBSchemaRegionAirGapSink extends
IoTDBDataNodeAirGapSink {
pipeSchemaRegionSnapshotEvent.toString(),
true);
} else {
- LOGGER.info(
+ LOGGER.debug(
"Successfully transferred schema region snapshot {} and {}.",
mtreeSnapshotFile,
tagLogSnapshotFile);
diff --git
a/iotdb-core/datanode/src/main/java/org/apache/iotdb/db/pipe/sink/protocol/thrift/sync/IoTDBSchemaRegionSink.java
b/iotdb-core/datanode/src/main/java/org/apache/iotdb/db/pipe/sink/protocol/thrift/sync/IoTDBSchemaRegionSink.java
index d8fc2ff92af..2d54ba58f5a 100644
---
a/iotdb-core/datanode/src/main/java/org/apache/iotdb/db/pipe/sink/protocol/thrift/sync/IoTDBSchemaRegionSink.java
+++
b/iotdb-core/datanode/src/main/java/org/apache/iotdb/db/pipe/sink/protocol/thrift/sync/IoTDBSchemaRegionSink.java
@@ -157,7 +157,7 @@ public class IoTDBSchemaRegionSink extends
IoTDBDataNodeSyncSink {
batch.getPipeName(),
batch.getCreationTime(),
planNode.toString());
- LOGGER.info("Successfully transferred batched schema events, batch size
{}.", batch.size());
+ LOGGER.debug("Successfully transferred batched schema events, batch size
{}.", batch.size());
}
private void doTransfer(
@@ -278,7 +278,7 @@ public class IoTDBSchemaRegionSink extends
IoTDBDataNodeSyncSink {
true);
}
- LOGGER.info("Successfully transferred file {} and {}.", mTreeSnapshotFile,
tagLogSnapshotFile);
+ LOGGER.debug("Successfully transferred file {} and {}.",
mTreeSnapshotFile, tagLogSnapshotFile);
}
@Override