[jboss-cvs] jboss-seam/src/debug/META-INF ...

Gavin King gavin.king at jboss.com
Thu May 17 19:30:13 EDT 2007


  User: gavin   
  Date: 07/05/17 19:30:13

  Modified:    src/debug/META-INF  debug.xhtml
  Log:
  unwrap exceptions
  
  Revision  Changes    Path
  1.13      +8 -5      jboss-seam/src/debug/META-INF/debug.xhtml
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: debug.xhtml
  ===================================================================
  RCS file: /cvsroot/jboss/jboss-seam/src/debug/META-INF/debug.xhtml,v
  retrieving revision 1.12
  retrieving revision 1.13
  diff -u -b -r1.12 -r1.13
  --- debug.xhtml	26 Feb 2007 23:55:23 -0000	1.12
  +++ debug.xhtml	17 May 2007 23:30:13 -0000	1.13
  @@ -220,11 +220,14 @@
       </h2>
       <div id="stackTrace">
           Exception during request processing: 
  -        #{org.jboss.seam.debug.contexts.exception.class.name}:
  -        #{org.jboss.seam.debug.contexts.exception.message}
  -        <pre><ui:repeat value="#{org.jboss.seam.debug.contexts.exception.stackTrace}" var="stackElement">
  +        <ui:repeat value="#{org.jboss.seam.debug.contexts.exceptionCauses}" var="exception">
  +        <div>
  +        Caused by #{exception.class.name} with message: "#{exception.message}"
  +        <pre><ui:repeat value="#{exception.stackTrace}" var="stackElement">
   #{stackElement}</ui:repeat></pre>
       </div>
  +        </ui:repeat>
  +    </div>
       </f:subview>
   
     </body>
  
  
  



More information about the jboss-cvs-commits mailing list