diff --git a/code/DocumentationSearch.php b/code/DocumentationSearch.php index ae35f15..7f839ca 100644 --- a/code/DocumentationSearch.php +++ b/code/DocumentationSearch.php @@ -173,7 +173,6 @@ class DocumentationSearch { $count++; if(!is_dir($page->getPath())) { - var_dump("Indexing ". $page->getPath()); $doc = Zend_Search_Lucene_Document_Html::loadHTML($page->getHtml()); $doc->addField(Zend_Search_Lucene_Field::Text('Title', $page->getTitle())); $doc->addField(Zend_Search_Lucene_Field::Keyword('Version', $page->getVersion())); @@ -181,9 +180,6 @@ class DocumentationSearch { $doc->addField(Zend_Search_Lucene_Field::Keyword('Path', $page->getPath())); $index->addDocument($doc); } - else { - var_dump("Not Indexing ". $page->getPath()); - } } }