Browse Source

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

1.10.x
Oliver Gierke 10 years ago
parent
commit
7dcfa15bcf
  1. 2
      src/main/java/org/springframework/data/repository/config/RepositoryConfigurationExtensionSupport.java

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

@ -273,7 +273,7 @@ public abstract class RepositoryConfigurationExtensionSupport implements Reposit @@ -273,7 +273,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