Changeset 4102


Ignore:
Timestamp:
2010-06-28 12:10:24 (3 years ago)
Author:
bruno
Message:

Aesthetics: use dashed lines in messages, looks lighter & lines up with rest of the Maven build.

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  
    2424        System.setProperty("solr.solr.home", solrHomeDir.getAbsolutePath()); 
    2525        System.setProperty("solr.data.dir", new File(solrHomeDir, "data").getAbsolutePath()); 
    26         System.out.println("===================================================================="); 
     26        System.out.println("------------------------------------------------------------------------"); 
    2727        System.out.println("Created temporary SOLR home directory at:"); 
    2828        System.out.println(solrHomeDir.getAbsolutePath()); 
    29         System.out.println("===================================================================="); 
     29        System.out.println("------------------------------------------------------------------------"); 
    3030 
    3131        // Launch SOLR 
     
    3333        if (solrWar == null || !new File(solrWar).exists()) { 
    3434            System.out.println(); 
    35             System.out.println("===================================================================="); 
     35            System.out.println("------------------------------------------------------------------------"); 
    3636            System.out.println("SOLR not found at"); 
    3737            System.out.println(solrWar); 
    3838            System.out.println("Verify setting of <solr.war> property in settings.xml"); 
    39             System.out.println("===================================================================="); 
     39            System.out.println("------------------------------------------------------------------------"); 
    4040            System.out.println(); 
    4141            throw new Exception("SOLR war not found at " + solrWar); 
  • projects/lily/trunk/testfw/src/main/java/org/lilycms/testfw/HBaseProxy.java

    r4097 r4102  
    100100 
    101101    private void cleanTables() throws Exception { 
    102         System.out.println("=========================== Resetting HBase tables ==========================="); 
    103  
     102        System.out.println("------------------------ Resetting HBase tables ------------------------"); 
     103         
    104104        StringBuilder truncateReport = new StringBuilder(); 
    105105        StringBuilder retainReport = new StringBuilder(); 
     
    161161        waitForTimestampTables(exploitTimestampTables); 
    162162 
    163         System.out.println("=============================================================================="); 
     163        System.out.println("------------------------------------------------------------------------"); 
    164164 
    165165    } 
Note: See TracChangeset for help on using the changeset viewer.