This is an automated email from the ASF dual-hosted git repository.

jackietien pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/iotdb.git


The following commit(s) were added to refs/heads/master by this push:
     new 89649f1d67d Prevent the contents of log_datanode_sample_query.log and 
log_explain_ananlyze.log from being output to log_datanode_all.log (#15800)
89649f1d67d is described below

commit 89649f1d67daf0b4d3ba3cf5b1a95587bf3b5ed7
Author: shuwenwei <[email protected]>
AuthorDate: Mon Jun 23 20:00:33 2025 +0800

    Prevent the contents of log_datanode_sample_query.log and 
log_explain_ananlyze.log from being output to log_datanode_all.log (#15800)
---
 .../datanode/src/assembly/resources/conf/logback-datanode.xml       | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git 
a/iotdb-core/datanode/src/assembly/resources/conf/logback-datanode.xml 
b/iotdb-core/datanode/src/assembly/resources/conf/logback-datanode.xml
index 8902599cf8f..557fd8b160f 100644
--- a/iotdb-core/datanode/src/assembly/resources/conf/logback-datanode.xml
+++ b/iotdb-core/datanode/src/assembly/resources/conf/logback-datanode.xml
@@ -257,10 +257,10 @@
     <logger level="info" name="QUERY_DEBUG">
         <appender-ref ref="QUERY_DEBUG"/>
     </logger>
-    <logger level="info" name="SLOW_SQL">
+    <logger level="info" name="SLOW_SQL" additivity="false">
         <appender-ref ref="SLOW_SQL"/>
     </logger>
-    <logger level="info" name="SAMPLED_QUERIES">
+    <logger level="info" name="SAMPLED_QUERIES" additivity="false">
         <appender-ref ref="SAMPLED_QUERIES"/>
     </logger>
     <logger level="info" name="QUERY_FREQUENCY">
@@ -279,7 +279,7 @@
     <logger level="info" name="org.apache.iotdb.commons.pipe">
         <appender-ref ref="PIPE"/>
     </logger>
-    <logger level="info" name="EXPLAIN_ANALYZE">
+    <logger level="info" name="EXPLAIN_ANALYZE" additivity="false">
         <appender-ref ref="EXPLAIN_ANALYZE"/>
     </logger>
 </configuration>

Reply via email to