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:
parent
fbc9d83a65
commit
6603ca541d
2 changed files with 4 additions and 4 deletions
|
@ -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
|
||||
|
|
|
@ -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$
|
||||
|
|
Loading…
Add table
Reference in a new issue