Changeset 15011


Ignore:
Timestamp:
2008-02-25T12:11:56+13:00 (16 years ago)
Author:
kjdon
Message:

changed a couple of logger error messages to info messages

File:
1 edited

Legend:

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

    r14515 r15011  
    264264    Element option_list = (Element)GSXML.getChildByTagName(config_elem, "optionList");
    265265    if (option_list != null) {
    266         logger.error("found an option list");
     266        logger.info("found an interface optionList");
    267267        // we set any options in the config params
    268268        NodeList options = option_list.getElementsByTagName("option");
     
    271271        String name = option.getAttribute(GSXML.NAME_ATT);
    272272        String value = option.getAttribute(GSXML.VALUE_ATT);
    273         logger.error("option: "+name+", "+value);
     273        logger.info("option: "+name+", "+value);
    274274        if (!name.equals("") && !value.equals("")) {
    275275            this.config_params.put(name, value);
Note: See TracChangeset for help on using the changeset viewer.