From tomcat-dev-return-27876-qmlist-jakarta-archive-tomcat-dev=nagoya.apache.org@jakarta.apache.org Fri Apr 04 22:51:24 2003 Return-Path: Delivered-To: apmail-jakarta-tomcat-dev-archive@apache.org Received: (qmail 89552 invoked from network); 4 Apr 2003 22:51:23 -0000 Received: from exchange.sun.com (192.18.33.10) by daedalus.apache.org with SMTP; 4 Apr 2003 22:51:23 -0000 Received: (qmail 9794 invoked by uid 97); 4 Apr 2003 22:53:19 -0000 Delivered-To: qmlist-jakarta-archive-tomcat-dev@nagoya.betaversion.org Received: (qmail 9787 invoked from network); 4 Apr 2003 22:53:19 -0000 Received: from daedalus.apache.org (HELO apache.org) (208.185.179.12) by nagoya.betaversion.org with SMTP; 4 Apr 2003 22:53:19 -0000 Received: (qmail 88686 invoked by uid 500); 4 Apr 2003 22:51:14 -0000 Mailing-List: contact tomcat-dev-help@jakarta.apache.org; run by ezmlm Precedence: bulk List-Unsubscribe: List-Subscribe: List-Help: List-Post: List-Id: "Tomcat Developers List" Reply-To: "Tomcat Developers List" Delivered-To: mailing list tomcat-dev@jakarta.apache.org Received: (qmail 88675 invoked by uid 500); 4 Apr 2003 22:51:14 -0000 Received: (qmail 88672 invoked from network); 4 Apr 2003 22:51:14 -0000 Received: from icarus.apache.org (208.185.179.13) by daedalus.apache.org with SMTP; 4 Apr 2003 22:51:14 -0000 Received: (qmail 78359 invoked by uid 1560); 4 Apr 2003 22:51:18 -0000 Date: 4 Apr 2003 22:51:18 -0000 Message-ID: <20030404225118.78358.qmail@icarus.apache.org> From: jfarcand@apache.org To: jakarta-tomcat-catalina-cvs@apache.org Subject: cvs commit: jakarta-tomcat-catalina/catalina/src/share/org/apache/catalina/core ApplicationDispatcher.java X-Spam-Rating: daedalus.apache.org 1.6.2 0/1000/N X-Spam-Rating: daedalus.apache.org 1.6.2 0/1000/N jfarcand 2003/04/04 14:51:18 Modified: catalina/src/share/org/apache/catalina/core ApplicationDispatcher.java Log: Do not print the exception since it has been previously logged (and also that not the proper exception) Revision Changes Path 1.13 +6 -6 jakarta-tomcat-catalina/catalina/src/share/org/apache/catalina/core/ApplicationDispatcher.java Index: ApplicationDispatcher.java =================================================================== RCS file: /home/cvs/jakarta-tomcat-catalina/catalina/src/share/org/apache/catalina/core/ApplicationDispatcher.java,v retrieving revision 1.12 retrieving revision 1.13 diff -u -r1.12 -r1.13 --- ApplicationDispatcher.java 18 Mar 2003 16:23:36 -0000 1.12 +++ ApplicationDispatcher.java 4 Apr 2003 22:51:18 -0000 1.13 @@ -13,7 +13,7 @@ * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: - * + *5 * 1. Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * @@ -520,7 +520,7 @@ AccessController.doPrivileged(dp); } catch (PrivilegedActionException pe) { Exception e = pe.getException(); - pe.printStackTrace(); + if (e instanceof ServletException) throw (ServletException) e; throw (IOException) e; --------------------------------------------------------------------- To unsubscribe, e-mail: tomcat-dev-unsubscribe@jakarta.apache.org For additional commands, e-mail: tomcat-dev-help@jakarta.apache.org