1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-06-08 10:16:03 +02:00

Got rid of reporting failed indexes in log

This commit is contained in:
Bogdan Gheorghe 2004-06-16 20:21:58 +00:00
parent fbc9d83a65
commit 6603ca541d
2 changed files with 4 additions and 4 deletions

View file

@ -1,3 +1,6 @@
2004-06-16 Bogdan Gheorghe
- Removed reporting index failed messages from log
2004-06-14 Andrew Niefer
- Bugs 66799, 66981 : don't process indexer jobs if the indexer for that project is disabled.
- also fix warnings about deprecated calls and unnecessary else statements

View file

@ -122,10 +122,7 @@ public class SourceIndexer extends AbstractIndexer {
requestor.startTimer();
}
boolean retVal = parser.parse();
if (!retVal)
org.eclipse.cdt.internal.core.model.Util.log(null, "Failed to index " + resourceFile.getFullPath(), ICLogConstants.CDT); //$NON-NLS-1$
if (AbstractIndexer.VERBOSE){
if (!retVal)
AbstractIndexer.verbose("PARSE FAILED " + resourceFile.getName().toString()); //$NON-NLS-1$