Skip to content

Commit a44049f

Browse files
committed
DATACMNS-843 - Raised log level for multi-store detection in RepositoryConfigurationDelegate.
1 parent 156697b commit a44049f

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

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

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2014 the original author or authors.
2+
* Copyright 2014-2016 the original author or authors.
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.
@@ -166,7 +166,7 @@ private boolean multipleStoresDetected() {
166166

167167
if (scanner.findCandidateComponents(MODULE_DETECTION_PACKAGE).size() > 1) {
168168

169-
LOGGER.debug(MULTIPLE_MODULES);
169+
LOGGER.info(MULTIPLE_MODULES);
170170
return true;
171171
}
172172

@@ -196,7 +196,8 @@ public LenientAssignableTypeFilter(Class<?> targetType) {
196196
* @see org.springframework.core.type.filter.AbstractTypeHierarchyTraversingFilter#match(org.springframework.core.type.classreading.MetadataReader, org.springframework.core.type.classreading.MetadataReaderFactory)
197197
*/
198198
@Override
199-
public boolean match(MetadataReader metadataReader, MetadataReaderFactory metadataReaderFactory) throws IOException {
199+
public boolean match(MetadataReader metadataReader, MetadataReaderFactory metadataReaderFactory)
200+
throws IOException {
200201

201202
try {
202203
return super.match(metadataReader, metadataReaderFactory);

0 commit comments

Comments
 (0)