From b5389da6573fbcd3253e2418d2107b1331c8db60 Mon Sep 17 00:00:00 2001 From: peter Date: Wed, 7 Dec 2016 18:35:28 +0100 Subject: [PATCH] display the file name in "Outdated stub in index" message --- .../src/com/intellij/psi/stubs/StubTreeLoaderImpl.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/platform/lang-impl/src/com/intellij/psi/stubs/StubTreeLoaderImpl.java b/platform/lang-impl/src/com/intellij/psi/stubs/StubTreeLoaderImpl.java index 90b1b9f4e329..196a63914632 100644 --- a/platform/lang-impl/src/com/intellij/psi/stubs/StubTreeLoaderImpl.java +++ b/platform/lang-impl/src/com/intellij/psi/stubs/StubTreeLoaderImpl.java @@ -99,7 +99,7 @@ public class StubTreeLoaderImpl extends StubTreeLoader { if (!stubTree.contentLengthMatches(vFile.getLength(), getCurrentTextContentLength(project, vFile, document))) { return processError(vFile, - "Outdated stub in index: " + StubUpdatingIndex.getIndexingStampInfo(vFile) + + "Outdated stub in index: " + vFile + " " + StubUpdatingIndex.getIndexingStampInfo(vFile) + ", doc=" + document + ", docSaved=" + saved + ", wasIndexedAlready=" + wasIndexedAlready +