lenya/src/java/org/apache/lenya/cms/cocoon/acting URIParametrizerAction.java,1.6,1.7

Christian Egli <[email protected]> Mon, 12 May 2003 15:00:35 +0200
Newsgroups gmane.comp.cms.wyona.cvs
Message-ID <[email protected]>
Update of /repository/lenya/src/java/org/apache/lenya/cms/cocoon/acting
In directory erbium:/tmp/cvs-serv18751/src/java/org/apache/lenya/cms/cocoon/acting

Modified Files:
	URIParametrizerAction.java 
Log Message:
The log.error stmnts should really be log.debug.


Index: URIParametrizerAction.java
===================================================================
RCS file: /repository/lenya/src/java/org/apache/lenya/cms/cocoon/acting/URIParametrizerAction.java,v
retrieving revision 1.6
retrieving revision 1.7
diff -C2 -d -r1.6 -r1.7
*** URIParametrizerAction.java	29 Apr 2003 14:59:11 -0000	1.6
--- URIParametrizerAction.java	12 May 2003 13:00:33 -0000	1.7
***************
*** 34,38 ****
  	public void startElement(String uri, String loc, String raw, Attributes a) {
  	    if (loc.equals("parameter")) {
! 		log.error("start Element " + uri + ":"+ loc + ":" + raw);
  		inParamElement = true;
  	    }
--- 34,38 ----
  	public void startElement(String uri, String loc, String raw, Attributes a) {
  	    if (loc.equals("parameter")) {
! 		log.debug("start Element " + uri + ":"+ loc + ":" + raw);
  		inParamElement = true;
  	    }
***************
*** 41,48 ****
  	public void endElement(String uri, String loc, String raw, Attributes a) {
  	    if (loc.equals("parameter")) {
! 		log.error("stop Element " + uri + ":"+ loc + ":" + raw);
  		inParamElement = false;
  	    }
!             log.error("processing Element " + uri + ":"+ loc + ":" + raw);
  	}
  
--- 41,48 ----
  	public void endElement(String uri, String loc, String raw, Attributes a) {
  	    if (loc.equals("parameter")) {
! 		log.debug("stop Element " + uri + ":"+ loc + ":" + raw);
  		inParamElement = false;
  	    }
!             log.debug("processing Element " + uri + ":"+ loc + ":" + raw);
  	}
  
***************
*** 50,54 ****
  	    if (inParamElement) {
  		parameterValue = new String(ch, start, len);
! 		log.error("grab Element " + parameterValue);
  	    }
  	}
--- 50,54 ----
  	    if (inParamElement) {
  		parameterValue = new String(ch, start, len);
! 		log.debug("grab Element " + parameterValue);
  	    }
  	}