fix #1822 suppress loading logs

This commit is contained in:
Shinsuke Sugaya 2018-08-30 09:21:32 +09:00
parent 5a0f028da5
commit 7a48a78bc4

View file

@ -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);
}