Ignore:
Timestamp:
2004-01-09T12:51:47+13:00 (20 years ago)
Author:
cs025
Message:

Fixed some problems in MG indexing; also changed use of mgseqno to a
by-index basis.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/gsdl3/src/java/org/greenstone/gsdl3/gs3build/indexers/IndexerManager.java

    r6355 r6376  
    5353      if (document.isIndexed()) {
    5454        if (!this.indexers[i].indexDocument(document.getID(), document)) {
    55           System.out.println("Ending document");
     55          System.out.println("Ending document " + document.getID());
    5656        }
    5757       
    5858        // note any changes made to this document...
    59         if (document.isModified() || true) {
     59        if (document.isModified()) {
    6060          this.documents.modifiedDocument(document);
     61          //          System.out.println("Writing document "+document.getID());
    6162        }
     63        /**
     64        if (p == 0) {
     65          System.out.println("Writing document "+document.getID());
     66        }
     67        */
    6268      }
    6369    }
Note: See TracChangeset for help on using the changeset viewer.