This is an automated email from the ASF dual-hosted git repository.
sseifert pushed a commit to branch master
in repository
https://gitbox.apache.org/repos/asf/sling-org-apache-sling-caconfig-impl.git
The following commit(s) were added to refs/heads/master by this push:
new 5ebaffa SLING-8637 caconfig-impl: Lower loglevel vor warning in
DefaultConfigurationResourceResolvingStrategy
5ebaffa is described below
commit 5ebaffaebab455f34e61d7caaa677406e94dacb9
Author: sseifert <[email protected]>
AuthorDate: Thu Aug 15 19:56:59 2019 +0200
SLING-8637 caconfig-impl: Lower loglevel vor warning in
DefaultConfigurationResourceResolvingStrategy
---
.../impl/def/DefaultConfigurationResourceResolvingStrategy.java | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git
a/src/main/java/org/apache/sling/caconfig/resource/impl/def/DefaultConfigurationResourceResolvingStrategy.java
b/src/main/java/org/apache/sling/caconfig/resource/impl/def/DefaultConfigurationResourceResolvingStrategy.java
index f1c680a..2020352 100644
---
a/src/main/java/org/apache/sling/caconfig/resource/impl/def/DefaultConfigurationResourceResolvingStrategy.java
+++
b/src/main/java/org/apache/sling/caconfig/resource/impl/def/DefaultConfigurationResourceResolvingStrategy.java
@@ -227,7 +227,7 @@ public class DefaultConfigurationResourceResolvingStrategy
implements Configurat
for (String bucketName : bucketNames) {
String notAllowedPostfix = "/" + bucketName;
if (ref != null && ref.endsWith(notAllowedPostfix)) {
- log.warn("Ignoring reference to {} from {} - Probably
misconfigured as it ends with '{}'",
+ log.debug("Ignoring reference to {} from {} - Probably
misconfigured as it ends with '{}'",
contextResource.getConfigRef(),
contextResource.getResource().getPath(), notAllowedPostfix);
ref = null;
}