Changeset 4102
- Timestamp:
- 2010-06-28 12:10:24 (3 years ago)
- Location:
- projects/lily/trunk
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
projects/lily/trunk/indexer/src/test/java/org/lilycms/indexer/test/SolrTestingUtility.java
r4001 r4102 24 24 System.setProperty("solr.solr.home", solrHomeDir.getAbsolutePath()); 25 25 System.setProperty("solr.data.dir", new File(solrHomeDir, "data").getAbsolutePath()); 26 System.out.println(" ====================================================================");26 System.out.println("------------------------------------------------------------------------"); 27 27 System.out.println("Created temporary SOLR home directory at:"); 28 28 System.out.println(solrHomeDir.getAbsolutePath()); 29 System.out.println(" ====================================================================");29 System.out.println("------------------------------------------------------------------------"); 30 30 31 31 // Launch SOLR … … 33 33 if (solrWar == null || !new File(solrWar).exists()) { 34 34 System.out.println(); 35 System.out.println(" ====================================================================");35 System.out.println("------------------------------------------------------------------------"); 36 36 System.out.println("SOLR not found at"); 37 37 System.out.println(solrWar); 38 38 System.out.println("Verify setting of <solr.war> property in settings.xml"); 39 System.out.println(" ====================================================================");39 System.out.println("------------------------------------------------------------------------"); 40 40 System.out.println(); 41 41 throw new Exception("SOLR war not found at " + solrWar); -
projects/lily/trunk/testfw/src/main/java/org/lilycms/testfw/HBaseProxy.java
r4097 r4102 100 100 101 101 private void cleanTables() throws Exception { 102 System.out.println(" =========================== Resetting HBase tables ===========================");103 102 System.out.println("------------------------ Resetting HBase tables ------------------------"); 103 104 104 StringBuilder truncateReport = new StringBuilder(); 105 105 StringBuilder retainReport = new StringBuilder(); … … 161 161 waitForTimestampTables(exploitTimestampTables); 162 162 163 System.out.println(" ==============================================================================");163 System.out.println("------------------------------------------------------------------------"); 164 164 165 165 }
Note: See TracChangeset
for help on using the changeset viewer.