You are viewing a plain text version of this content. The canonical link for it is here.
Posted to xindice-dev@xml.apache.org by vl...@apache.org on 2003/04/06 07:56:03 UTC

cvs commit: xml-xindice/java/src/org/apache/xindice/core/filer HashFiler.java

vladimir    2003/04/05 21:56:03

  Modified:    java/src/org/apache/xindice/core/filer HashFiler.java
  Log:
  System.out -> log
  
  Revision  Changes    Path
  1.10      +4 -2      xml-xindice/java/src/org/apache/xindice/core/filer/HashFiler.java
  
  Index: HashFiler.java
  ===================================================================
  RCS file: /home/cvs/xml-xindice/java/src/org/apache/xindice/core/filer/HashFiler.java,v
  retrieving revision 1.9
  retrieving revision 1.10
  diff -u -r1.9 -r1.10
  --- HashFiler.java	6 Feb 2003 04:50:45 -0000	1.9
  +++ HashFiler.java	6 Apr 2003 05:56:03 -0000	1.10
  @@ -169,7 +169,9 @@
      private Page seekInsertionPage(Key key) throws IOException {
         int hash = key.getHash();
         long pageNum = hash % fileHeader.getPageCount();
  -System.out.println("Hash page  " + pageNum);
  +      
  +      log.trace("Hash page  " + pageNum);
  +      
         Page p = null;
         HashPageHeader ph = null;
         while ( true ) {