Browse Source

DATACMNS-843 - Raised log level for multi-store detection in RepositoryConfigurationDelegate.

pull/159/head
Oliver Gierke 10 years ago
parent
commit
a44049fa4e
  1. 7
      src/main/java/org/springframework/data/repository/config/RepositoryConfigurationDelegate.java

7
src/main/java/org/springframework/data/repository/config/RepositoryConfigurationDelegate.java

@ -1,5 +1,5 @@ @@ -1,5 +1,5 @@
/*
* Copyright 2014 the original author or authors.
* Copyright 2014-2016 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@ -166,7 +166,7 @@ public class RepositoryConfigurationDelegate { @@ -166,7 +166,7 @@ public class RepositoryConfigurationDelegate {
if (scanner.findCandidateComponents(MODULE_DETECTION_PACKAGE).size() > 1) {
LOGGER.debug(MULTIPLE_MODULES);
LOGGER.info(MULTIPLE_MODULES);
return true;
}
@ -196,7 +196,8 @@ public class RepositoryConfigurationDelegate { @@ -196,7 +196,8 @@ public class RepositoryConfigurationDelegate {
* @see org.springframework.core.type.filter.AbstractTypeHierarchyTraversingFilter#match(org.springframework.core.type.classreading.MetadataReader, org.springframework.core.type.classreading.MetadataReaderFactory)
*/
@Override
public boolean match(MetadataReader metadataReader, MetadataReaderFactory metadataReaderFactory) throws IOException {
public boolean match(MetadataReader metadataReader, MetadataReaderFactory metadataReaderFactory)
throws IOException {
try {
return super.match(metadataReader, metadataReaderFactory);

Loading…
Cancel
Save