mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-27 10:03:11 +07:00
IJPL-174027: more accurate logging
GitOrigin-RevId: 095dda3c4f916d8738880dfcf5d2ba0c51ad558b
This commit is contained in:
committed by
intellij-monorepo-bot
parent
a7395066da
commit
625cf2d0c2
+1
-1
@@ -51,7 +51,7 @@ final class StubCumulativeInputDiffBuilder extends DirectInputDataDiffBuilder<In
|
||||
LOG.info((dryRun ? "[dry run]" : "") + "equal trees: inputId=" + myInputId +
|
||||
",myTreeLen=" + myCurrentTree.myTreeByteLength +
|
||||
",myStubLen=" + myCurrentTree.myIndexedStubByteLength +
|
||||
",newTreeLen=" + newSerializedStubTree.myIndexedStubByteLength +
|
||||
",newTreeLen=" + newSerializedStubTree.myTreeByteLength +
|
||||
",newStubLen=" + newSerializedStubTree.myIndexedStubByteLength);
|
||||
}
|
||||
return false;
|
||||
|
||||
@@ -184,6 +184,8 @@ final class StubTreeLoaderImpl extends StubTreeLoader {
|
||||
message += " (this)";
|
||||
}
|
||||
message += " shouldBeIndexed=" + IndexableFilesIndex.getInstance(project).shouldBeIndexed(vFile);
|
||||
// Should return the same as above. Why do we need two different API?
|
||||
message += " shouldBeIndexed2=" + ((FileBasedIndexImpl)FileBasedIndex.getInstance()).belongsToProjectIndexableFiles(vFile, project);
|
||||
message += "\n";
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user