Return-Path: Delivered-To: apmail-struts-commits-archive@locus.apache.org Received: (qmail 46177 invoked from network); 2 Jul 2008 07:13:43 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 2 Jul 2008 07:13:43 -0000 Received: (qmail 57687 invoked by uid 500); 2 Jul 2008 07:13:43 -0000 Delivered-To: apmail-struts-commits-archive@struts.apache.org Received: (qmail 57656 invoked by uid 500); 2 Jul 2008 07:13:43 -0000 Mailing-List: contact commits-help@struts.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@struts.apache.org Delivered-To: mailing list commits@struts.apache.org Received: (qmail 57647 invoked by uid 99); 2 Jul 2008 07:13:43 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 02 Jul 2008 00:13:43 -0700 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.4] (HELO eris.apache.org) (140.211.11.4) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 02 Jul 2008 07:13:00 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id 996F52388A59; Wed, 2 Jul 2008 00:12:51 -0700 (PDT) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r673304 - /struts/struts2/trunk/plugins/codebehind/src/main/java/org/apache/struts2/config/ClasspathPackageProvider.java Date: Wed, 02 Jul 2008 07:12:51 -0000 To: commits@struts.apache.org From: jeromy@apache.org X-Mailer: svnmailer-1.0.8 Message-Id: <20080702071251.996F52388A59@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: jeromy Date: Wed Jul 2 00:12:50 2008 New Revision: 673304 URL: http://svn.apache.org/viewvc?rev=673304&view=rev Log: WW-2706 Changed system.out to LOG.debug in codebehind's ClasspathPackageProvider Modified: struts/struts2/trunk/plugins/codebehind/src/main/java/org/apache/struts2/config/ClasspathPackageProvider.java Modified: struts/struts2/trunk/plugins/codebehind/src/main/java/org/apache/struts2/config/ClasspathPackageProvider.java URL: http://svn.apache.org/viewvc/struts/struts2/trunk/plugins/codebehind/src/main/java/org/apache/struts2/config/ClasspathPackageProvider.java?rev=673304&r1=673303&r2=673304&view=diff ============================================================================== --- struts/struts2/trunk/plugins/codebehind/src/main/java/org/apache/struts2/config/ClasspathPackageProvider.java (original) +++ struts/struts2/trunk/plugins/codebehind/src/main/java/org/apache/struts2/config/ClasspathPackageProvider.java Wed Jul 2 00:12:50 2008 @@ -497,7 +497,9 @@ packageLoader.registerChildToParent(pkgConfig, parent); } - System.out.println("class:"+actionClass+" parent:"+parent+" current:"+(pkgConfig != null ? pkgConfig.getName() : "")); + if (LOG.isDebugEnabled()) { + LOG.debug("class:"+actionClass+" parent:"+parent+" current:"+(pkgConfig != null ? pkgConfig.getName() : "")); + } return pkgConfig; }