Return-Path: Delivered-To: apmail-maven-commits-archive@www.apache.org Received: (qmail 87540 invoked from network); 29 Oct 2008 03:12:27 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 29 Oct 2008 03:12:27 -0000 Received: (qmail 36999 invoked by uid 500); 29 Oct 2008 03:12:31 -0000 Delivered-To: apmail-maven-commits-archive@maven.apache.org Received: (qmail 36933 invoked by uid 500); 29 Oct 2008 03:12:31 -0000 Mailing-List: contact commits-help@maven.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@maven.apache.org Delivered-To: mailing list commits@maven.apache.org Received: (qmail 36924 invoked by uid 99); 29 Oct 2008 03:12:31 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 28 Oct 2008 20:12:31 -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, 29 Oct 2008 03:11:18 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id 28E502388986; Tue, 28 Oct 2008 20:11:59 -0700 (PDT) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r708758 - /maven/components/branches/maven-2.0.x/maven-core/src/main/java/org/apache/maven/cli/AbstractConsoleDownloadMonitor.java Date: Wed, 29 Oct 2008 03:11:58 -0000 To: commits@maven.apache.org From: brett@apache.org X-Mailer: svnmailer-1.0.8 Message-Id: <20081029031159.28E502388986@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: brett Date: Tue Oct 28 20:11:58 2008 New Revision: 708758 URL: http://svn.apache.org/viewvc?rev=708758&view=rev Log: don't print unnecessary stack traces Merged from: r679271 Modified: maven/components/branches/maven-2.0.x/maven-core/src/main/java/org/apache/maven/cli/AbstractConsoleDownloadMonitor.java Modified: maven/components/branches/maven-2.0.x/maven-core/src/main/java/org/apache/maven/cli/AbstractConsoleDownloadMonitor.java URL: http://svn.apache.org/viewvc/maven/components/branches/maven-2.0.x/maven-core/src/main/java/org/apache/maven/cli/AbstractConsoleDownloadMonitor.java?rev=708758&r1=708757&r2=708758&view=diff ============================================================================== --- maven/components/branches/maven-2.0.x/maven-core/src/main/java/org/apache/maven/cli/AbstractConsoleDownloadMonitor.java (original) +++ maven/components/branches/maven-2.0.x/maven-core/src/main/java/org/apache/maven/cli/AbstractConsoleDownloadMonitor.java Tue Oct 28 20:11:58 2008 @@ -75,8 +75,7 @@ public void transferError( TransferEvent transferEvent ) { - // TODO: can't use getLogger() because this isn't currently instantiated as a component - transferEvent.getException().printStackTrace(); + // these errors should already be handled elsewhere by Maven since they all result in an exception from Wagon } /**