소스 검색

fix #1822 suppress loading logs

Shinsuke Sugaya 6 년 전
부모
커밋
7a48a78bc4
1개의 변경된 파일2개의 추가작업 그리고 2개의 파일을 삭제
  1. 2 2
      src/main/java/org/codelibs/fess/ds/DataStoreFactory.java

+ 2 - 2
src/main/java/org/codelibs/fess/ds/DataStoreFactory.java

@@ -34,8 +34,8 @@ public class DataStoreFactory {
         if (name == null || dataStore == null) {
             throw new IllegalArgumentException("name or dataStore is null.");
         }
-        if (logger.isInfoEnabled()) {
-            logger.info("Loaded " + name);
+        if (logger.isDebugEnabled()) {
+            logger.debug("Loaded " + name);
         }
         dataStoreMap.put(name, dataStore);
     }