Ignore:
Timestamp:
2009-05-28T15:20:19+12:00 (15 years ago)
Author:
shaoqun
Message:

clean up debugging code

File:
1 edited

Legend:

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

    r16944 r19643  
    274274    Element option_list = (Element)GSXML.getChildByTagName(config_elem, "optionList");
    275275    if (option_list != null) {
    276         logger.info("found an interface optionList");
     276        logger.debug("found an interface optionList");
    277277        // we set any options in the config params
    278278        NodeList options = option_list.getElementsByTagName("option");
     
    281281        String name = option.getAttribute(GSXML.NAME_ATT);
    282282        String value = option.getAttribute(GSXML.VALUE_ATT);
    283         logger.info("option: "+name+", "+value);
     283        logger.debug("option: "+name+", "+value);
    284284        if (!name.equals("") && !value.equals("")) {
    285285            this.config_params.put(name, value);
Note: See TracChangeset for help on using the changeset viewer.