diff --git a/platform/indexing-impl/src/com/intellij/psi/stubs/StubProcessingHelperBase.java b/platform/indexing-impl/src/com/intellij/psi/stubs/StubProcessingHelperBase.java index b86f2f031baf..8f00666244bb 100644 --- a/platform/indexing-impl/src/com/intellij/psi/stubs/StubProcessingHelperBase.java +++ b/platform/indexing-impl/src/com/intellij/psi/stubs/StubProcessingHelperBase.java @@ -111,7 +111,7 @@ public abstract class StubProcessingHelperBase { @NotNull Collection contexts) { if (ourContextErrorCounter.get() < MAX_CONTEXT_ERROR_NUMBER) { // todo IJPL-339 we need to process the file twice in this case. Not supported yet - LOG.error("Multiple contexts for file " + file + " in scope " + scope + ". Contexts: " + contexts); + LOG.warn("Multiple contexts for file " + file + " in scope " + scope + ". Contexts: " + contexts); ourContextErrorCounter.incrementAndGet(); } }