Browse Source

DATACMNS-843 - Raised log level for dropped repositories in strict configuration mode to INFO.

pull/172/head
Oliver Gierke 10 years ago
parent
commit
fdc1716a97
  1. 2
      src/main/java/org/springframework/data/repository/config/RepositoryConfigurationExtensionSupport.java

2
src/main/java/org/springframework/data/repository/config/RepositoryConfigurationExtensionSupport.java

@ -280,7 +280,7 @@ public abstract class RepositoryConfigurationExtensionSupport implements Reposit @@ -280,7 +280,7 @@ public abstract class RepositoryConfigurationExtensionSupport implements Reposit
}
}
LOGGER.debug(MULTI_STORE_DROPPED, getModuleName(), repositoryInterface);
LOGGER.info(MULTI_STORE_DROPPED, getModuleName(), repositoryInterface);
return false;
}

Loading…
Cancel
Save