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

jackietien 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 ee8b8ef8fe3 [to dev/1.3] Prevent the contents of 
log_datanode_sample_query.log and log_explain_ananlyze.log from being output to 
log_datanode_all.log (#15801)
ee8b8ef8fe3 is described below

commit ee8b8ef8fe30d297e799c71c0c2e9cb1f1b3e1f6
Author: shuwenwei <[email protected]>
AuthorDate: Mon Jun 23 20:00:22 2025 +0800

    [to dev/1.3] Prevent the contents of log_datanode_sample_query.log and 
log_explain_ananlyze.log from being output to log_datanode_all.log (#15801)
---
 .../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