Author: tomekr
Date: Thu Mar 16 10:50:54 2017
New Revision: 1787153
URL: http://svn.apache.org/viewvc?rev=1787153&view=rev
Log:
OAK-5515: Allow to ignore writes for some of the read-only paths
decreased the logging level to DEBUG
Modified:
jackrabbit/oak/trunk/oak-core/src/main/java/org/apache/jackrabbit/oak/plugins/multiplex/MultiplexingNodeStore.java
Modified:
jackrabbit/oak/trunk/oak-core/src/main/java/org/apache/jackrabbit/oak/plugins/multiplex/MultiplexingNodeStore.java
URL:
http://svn.apache.org/viewvc/jackrabbit/oak/trunk/oak-core/src/main/java/org/apache/jackrabbit/oak/plugins/multiplex/MultiplexingNodeStore.java?rev=1787153&r1=1787152&r2=1787153&view=diff
==============================================================================
---
jackrabbit/oak/trunk/oak-core/src/main/java/org/apache/jackrabbit/oak/plugins/multiplex/MultiplexingNodeStore.java
(original)
+++
jackrabbit/oak/trunk/oak-core/src/main/java/org/apache/jackrabbit/oak/plugins/multiplex/MultiplexingNodeStore.java
Thu Mar 16 10:50:54 2017
@@ -156,7 +156,7 @@ public class MultiplexingNodeStore imple
Set<String> changedPaths = getModifiedPaths(baseState,
nodeState);
Set<String> ignoredChangedPaths =
getIgnoredPaths(changedPaths);
if (!ignoredChangedPaths.isEmpty()) {
- LOG.warn("Can't merge following read-only paths (they are
configured to be ignored): {}.", ignoredChangedPaths);
+ LOG.debug("Can't merge following read-only paths (they are
configured to be ignored): {}.", ignoredChangedPaths);
}
Set<String> failingChangedPaths = difference(changedPaths,
ignoredChangedPaths);
if (!failingChangedPaths.isEmpty()) {