Return-Path: Delivered-To: apmail-geronimo-scm-archive@www.apache.org Received: (qmail 26462 invoked from network); 13 Oct 2006 00:47:06 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (209.237.227.199) by minotaur.apache.org with SMTP; 13 Oct 2006 00:47:06 -0000 Received: (qmail 34790 invoked by uid 500); 13 Oct 2006 00:47:03 -0000 Delivered-To: apmail-geronimo-scm-archive@geronimo.apache.org Received: (qmail 34722 invoked by uid 500); 13 Oct 2006 00:47:03 -0000 Mailing-List: contact scm-help@geronimo.apache.org; run by ezmlm Precedence: bulk list-help: list-unsubscribe: List-Post: Reply-To: dev@geronimo.apache.org List-Id: Delivered-To: mailing list scm@geronimo.apache.org Received: (qmail 34603 invoked by uid 99); 13 Oct 2006 00:47:02 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (140.211.166.49) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 12 Oct 2006 17:47:02 -0700 X-ASF-Spam-Status: No, hits=-9.4 required=10.0 tests=ALL_TRUSTED,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; Thu, 12 Oct 2006 17:47:02 -0700 Received: by eris.apache.org (Postfix, from userid 65534) id 0D99E1A981D; Thu, 12 Oct 2006 17:46:42 -0700 (PDT) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r463534 - /geronimo/genesis/trunk/plugins/plugin-support/src/main/java/org/apache/geronimo/genesis/util/MavenPluginLog.java Date: Fri, 13 Oct 2006 00:46:41 -0000 To: scm@geronimo.apache.org From: jdillon@apache.org X-Mailer: svnmailer-1.1.0 Message-Id: <20061013004642.0D99E1A981D@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: jdillon Date: Thu Oct 12 17:46:41 2006 New Revision: 463534 URL: http://svn.apache.org/viewvc?view=rev&rev=463534 Log: Disable trace output as debug, it is way to verbose Modified: geronimo/genesis/trunk/plugins/plugin-support/src/main/java/org/apache/geronimo/genesis/util/MavenPluginLog.java Modified: geronimo/genesis/trunk/plugins/plugin-support/src/main/java/org/apache/geronimo/genesis/util/MavenPluginLog.java URL: http://svn.apache.org/viewvc/geronimo/genesis/trunk/plugins/plugin-support/src/main/java/org/apache/geronimo/genesis/util/MavenPluginLog.java?view=diff&rev=463534&r1=463533&r2=463534 ============================================================================== --- geronimo/genesis/trunk/plugins/plugin-support/src/main/java/org/apache/geronimo/genesis/util/MavenPluginLog.java (original) +++ geronimo/genesis/trunk/plugins/plugin-support/src/main/java/org/apache/geronimo/genesis/util/MavenPluginLog.java Thu Oct 12 17:46:41 2006 @@ -72,7 +72,12 @@ } public boolean isTraceEnabled() { - return getLog().isDebugEnabled(); + // + // FIXME: Trace is way to verbose to allow it to be turned on with debug + // Maybe add a custom system prop to enable this + // + // return getLog().isDebugEnabled(); + return false; } public boolean isWarnEnabled() { @@ -89,11 +94,15 @@ } public void trace(Object object) { - debug(object); + if (isTraceEnabled()) { + debug(object); + } } public void trace(Object object, Throwable throwable) { - debug(object, throwable); + if (isTraceEnabled()) { + debug(object, throwable); + } } public void debug(Object object) {