added additional debug output
This commit is contained in:
@@ -146,8 +146,13 @@ public class SpringIndexerJava implements SpringIndexer {
|
|||||||
if (symbols == null) {
|
if (symbols == null) {
|
||||||
List<CachedSymbol> generatedSymbols = new ArrayList<CachedSymbol>();
|
List<CachedSymbol> generatedSymbols = new ArrayList<CachedSymbol>();
|
||||||
|
|
||||||
|
log.info("scan java files, AST parse, pass 1 for files: " + javaFiles.length);
|
||||||
|
|
||||||
String[] pass2Files = scanFiles(project, javaFiles, generatedSymbols, SCAN_PASS.ONE);
|
String[] pass2Files = scanFiles(project, javaFiles, generatedSymbols, SCAN_PASS.ONE);
|
||||||
if (pass2Files.length > 0) {
|
if (pass2Files.length > 0) {
|
||||||
|
|
||||||
|
log.info("scan java files, AST parse, pass 2 for files: " + javaFiles.length);
|
||||||
|
|
||||||
scanFiles(project, pass2Files, generatedSymbols, SCAN_PASS.TWO);
|
scanFiles(project, pass2Files, generatedSymbols, SCAN_PASS.TWO);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -128,7 +128,7 @@ public class SpringIndexerXML implements SpringIndexer {
|
|||||||
}
|
}
|
||||||
|
|
||||||
private void scanFile(IJavaProject project, String fileName, List<CachedSymbol> generatedSymbols) {
|
private void scanFile(IJavaProject project, String fileName, List<CachedSymbol> generatedSymbols) {
|
||||||
log.debug("starting to parse XML file for Spring symbol indexing: ", fileName);
|
log.debug("starting to parse XML file for Spring symbol indexing: " + fileName);
|
||||||
|
|
||||||
try {
|
try {
|
||||||
File file = new File(fileName);
|
File file = new File(fileName);
|
||||||
|
|||||||
Reference in New Issue
Block a user