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

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


The following commit(s) were added to refs/heads/develop by this push:
     new 7989b3af change config not found log to debug #628  Open
7989b3af is described below

commit 7989b3afb0436913785d36854e5813ac2e2ffe58
Author: CritasWang <[email protected]>
AuthorDate: Tue Nov 4 17:18:08 2025 +0800

    change config not found log to debug #628  Open
---
 .../src/main/java/org/apache/tsfile/common/conf/TSFileDescriptor.java | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git 
a/java/tsfile/src/main/java/org/apache/tsfile/common/conf/TSFileDescriptor.java 
b/java/tsfile/src/main/java/org/apache/tsfile/common/conf/TSFileDescriptor.java
index 01b78316..167923da 100644
--- 
a/java/tsfile/src/main/java/org/apache/tsfile/common/conf/TSFileDescriptor.java
+++ 
b/java/tsfile/src/main/java/org/apache/tsfile/common/conf/TSFileDescriptor.java
@@ -141,7 +141,9 @@ public class TSFileDescriptor {
       logger.info("try loading {} from {}", TSFileConfig.CONFIG_FILE_NAME, 
file);
       return loadPropertiesFromFile(file);
     } else {
-      logger.warn("not found {}, use the default configs.", 
TSFileConfig.CONFIG_FILE_NAME);
+      if (logger.isDebugEnabled()) {
+        logger.debug("not found {}, use the default configs.", 
TSFileConfig.CONFIG_FILE_NAME);
+      }
       return Optional.empty();
     }
   }

Reply via email to