JackieTien97 commented on code in PR #628:
URL: https://github.com/apache/tsfile/pull/628#discussion_r2489356399
##########
java/tsfile/src/main/java/org/apache/tsfile/common/conf/TSFileDescriptor.java:
##########
@@ -141,7 +141,7 @@ private Optional<Properties> loadProperties() {
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);
+ logger.debug("not found {}, use the default configs.",
TSFileConfig.CONFIG_FILE_NAME);
Review Comment:
```suggestion
if (logger..isDebugEnabled()) {
logger.debug("not found {}, use the default configs.",
TSFileConfig.CONFIG_FILE_NAME);
}
```
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]