Return-Path: Delivered-To: apmail-incubator-roller-commits-archive@www.apache.org Received: (qmail 42102 invoked from network); 24 Jul 2006 21:54:40 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (209.237.227.199) by minotaur.apache.org with SMTP; 24 Jul 2006 21:54:40 -0000 Received: (qmail 38739 invoked by uid 500); 24 Jul 2006 21:54:38 -0000 Delivered-To: apmail-incubator-roller-commits-archive@incubator.apache.org Received: (qmail 38710 invoked by uid 500); 24 Jul 2006 21:54:38 -0000 Mailing-List: contact roller-commits-help@incubator.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: roller-dev@incubator.apache.org Delivered-To: mailing list roller-commits@incubator.apache.org Received: (qmail 38696 invoked by uid 99); 24 Jul 2006 21:54:38 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (140.211.166.49) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 24 Jul 2006 14:54:37 -0700 X-ASF-Spam-Status: No, hits=-8.6 required=10.0 tests=ALL_TRUSTED,INFO_TLD,NO_REAL_NAME X-Spam-Check-By: apache.org Received-SPF: pass (asf.osuosl.org: local policy) Received: from [140.211.166.113] (HELO eris.apache.org) (140.211.166.113) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 24 Jul 2006 14:54:37 -0700 Received: by eris.apache.org (Postfix, from userid 65534) id 3AB1F1A981D; Mon, 24 Jul 2006 14:54:17 -0700 (PDT) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r425196 - /incubator/roller/branches/roller_3.0/src/org/apache/roller/ui/rendering/filters/RequestMappingFilter.java Date: Mon, 24 Jul 2006 21:54:16 -0000 To: roller-commits@incubator.apache.org From: agilliland@apache.org X-Mailer: svnmailer-1.0.8 Message-Id: <20060724215417.3AB1F1A981D@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N Author: agilliland Date: Mon Jul 24 14:54:16 2006 New Revision: 425196 URL: http://svn.apache.org/viewvc?rev=425196&view=rev Log: better initialization message, say how many mappers are configured. Modified: incubator/roller/branches/roller_3.0/src/org/apache/roller/ui/rendering/filters/RequestMappingFilter.java Modified: incubator/roller/branches/roller_3.0/src/org/apache/roller/ui/rendering/filters/RequestMappingFilter.java URL: http://svn.apache.org/viewvc/incubator/roller/branches/roller_3.0/src/org/apache/roller/ui/rendering/filters/RequestMappingFilter.java?rev=425196&r1=425195&r2=425196&view=diff ============================================================================== --- incubator/roller/branches/roller_3.0/src/org/apache/roller/ui/rendering/filters/RequestMappingFilter.java (original) +++ incubator/roller/branches/roller_3.0/src/org/apache/roller/ui/rendering/filters/RequestMappingFilter.java Mon Jul 24 14:54:16 2006 @@ -101,7 +101,8 @@ "Weblog urls probably won't function as you expect."); } - log.info("Request mapping filter initialized"); + log.info("Request mapping filter initialized, "+requestMappers.size()+ + " mappers configured."); }