Ignore:
Timestamp:
2003-09-01T15:51:31+12:00 (21 years ago)
Author:
kjdon
Message:

tidying up println stuff

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/gsdl3/src/java/org/greenstone/gsdl3/core/Receptionist.java

    r5144 r5402  
    8989        ac = (Action)Class.forName("org.greenstone.gsdl3.action."+class_name).newInstance();
    9090        } catch (Exception e) {
    91         System.out.println("couldn't load in action "+class_name);
     91        System.err.println("Receptionist: couldn't load in action "+class_name);
    9292        e.printStackTrace();
    9393        continue;
     
    102102    this.language_list = (Element)GSXML.getChildByTagName(config_doc, "languageList");
    103103    if (language_list == null) {
    104         System.out.println("lang list is null!!");
     104        System.err.println("Receptionist: didn't find a language list in the config file!!");
    105105    }
    106106    return true;
     
    193193    page.appendChild(page_response);
    194194
    195     //System.out.println("REceptionist: raw page="+this.converter.getString(page));
     195    ///ystem.out.println("REceptionist: raw page="+this.converter.getString(page));
    196196    // transform the result in some way
    197197    Element resulting_page = postProcessPage(page);
Note: See TracChangeset for help on using the changeset viewer.