Changeset 13989


Ignore:
Timestamp:
2007-03-22T11:24:53+12:00 (17 years ago)
Author:
kjdon
Message:

removed or commented out some logger.debug statements

Location:
trunk/gsdl3/src/java/org/greenstone/gsdl3/util
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/gsdl3/src/java/org/greenstone/gsdl3/util/Dictionary.java

    r13270 r13989  
    5151        this.raw = ResourceBundle.getBundle(this.resource, this.locale);
    5252    } catch (Exception e) {
    53         logger.debug("Dictionary: couldn't locate a resource bundle for "+resource);
     53        //logger.debug("Dictionary: couldn't locate a resource bundle for "+resource);
    5454    }
    5555    }
     
    6161        this.raw = ResourceBundle.getBundle(this.resource, this.locale);
    6262    } catch (Exception e) {
    63         logger.debug("Dictionary: couldn't locate a resource bundle for "+resource);
     63        //logger.debug("Dictionary: couldn't locate a resource bundle for "+resource);
    6464    }
    6565    }
     
    8484        this.raw = ResourceBundle.getBundle(this.resource, this.locale);
    8585    } catch (Exception ex) {
    86         logger.debug("Dictionary: couldn't locate a resource bundle for "+resource);
     86        //logger.debug("Dictionary: couldn't locate a resource bundle for "+resource);
    8787    }
    8888   
     
    143143    }
    144144    catch (Exception e) {
    145         logger.debug("Dictionary Error: couldn't find string for key:" + key +" in resource "+this.resource);
     145        //logger.debug("Dictionary Error: couldn't find string for key:" + key +" in resource "+this.resource);
    146146        return null;
    147147    }
  • trunk/gsdl3/src/java/org/greenstone/gsdl3/util/GSXML.java

    r13963 r13989  
    662662    for (int i=0; i<children.getLength(); i++) {
    663663        Node child = children.item(i);
    664         logger.debug("getnamed elem, node nmae="+child.getNodeName());
    665664        if (child.getNodeName().equals(node_name)) {
    666665        if (((Element)child).getAttribute(attribute_name).equals(attribute_value))
     
    861860
    862861    if (e.getNodeType() == Node.TEXT_NODE){
     862        // shouldn't we actually print the text here????
    863863        System.out.println("text") ;
    864         logger.debug(e.getNodeValue()) ;
    865864        return ;
    866865    }
Note: See TracChangeset for help on using the changeset viewer.