You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@commons.apache.org by js...@apache.org on 2002/06/25 19:11:41 UTC

cvs commit: jakarta-commons-sandbox/jelly/src/java/org/apache/commons/jelly/impl TagScript.java

jstrachan    2002/06/25 10:11:41

  Modified:    jelly/src/java/org/apache/commons/jelly/impl TagScript.java
  Log:
  Added some extra logging if an exception is caught inside a tag script
  
  Revision  Changes    Path
  1.12      +6 -5      jakarta-commons-sandbox/jelly/src/java/org/apache/commons/jelly/impl/TagScript.java
  
  Index: TagScript.java
  ===================================================================
  RCS file: /home/cvs/jakarta-commons-sandbox/jelly/src/java/org/apache/commons/jelly/impl/TagScript.java,v
  retrieving revision 1.11
  retrieving revision 1.12
  diff -u -r1.11 -r1.12
  --- TagScript.java	21 Jun 2002 02:57:17 -0000	1.11
  +++ TagScript.java	25 Jun 2002 17:11:41 -0000	1.12
  @@ -213,6 +213,7 @@
   			throw e;
   		}
           catch (Exception e) {
  +            log.error( "Caught exception: " + e, e );
               throw new JellyException(e, columnNumber, lineNumber);            
           }
       }
  
  
  

--
To unsubscribe, e-mail:   <ma...@jakarta.apache.org>
For additional commands, e-mail: <ma...@jakarta.apache.org>