fix #1822 suppress loading logs
This commit is contained in:
parent
5a0f028da5
commit
7a48a78bc4
1 changed files with 2 additions and 2 deletions
|
@ -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);
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue