Return-Path: Delivered-To: apmail-tuscany-commits-archive@www.apache.org Received: (qmail 98764 invoked from network); 2 Oct 2010 18:48:19 -0000 Received: from unknown (HELO mail.apache.org) (140.211.11.3) by 140.211.11.9 with SMTP; 2 Oct 2010 18:48:19 -0000 Received: (qmail 28550 invoked by uid 500); 2 Oct 2010 18:48:19 -0000 Delivered-To: apmail-tuscany-commits-archive@tuscany.apache.org Received: (qmail 28514 invoked by uid 500); 2 Oct 2010 18:48:19 -0000 Mailing-List: contact commits-help@tuscany.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@tuscany.apache.org Delivered-To: mailing list commits@tuscany.apache.org Received: (qmail 28507 invoked by uid 99); 2 Oct 2010 18:48:19 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 02 Oct 2010 18:48:19 +0000 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; Sat, 02 Oct 2010 18:48:19 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id 462992388A38; Sat, 2 Oct 2010 18:47:59 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1003857 - /tuscany/sca-java-2.x/branches/sca-java-2.0-M5/modules/contribution/src/main/java/org/apache/tuscany/sca/contribution/scanner/impl/DirectoryContributionScanner.java Date: Sat, 02 Oct 2010 18:47:59 -0000 To: commits@tuscany.apache.org From: lresende@apache.org X-Mailer: svnmailer-1.0.8 Message-Id: <20101002184759.462992388A38@eris.apache.org> Author: lresende Date: Sat Oct 2 18:47:58 2010 New Revision: 1003857 URL: http://svn.apache.org/viewvc?rev=1003857&view=rev Log: TUSCANY-3667 - Making exception logged as warning instead of error Modified: tuscany/sca-java-2.x/branches/sca-java-2.0-M5/modules/contribution/src/main/java/org/apache/tuscany/sca/contribution/scanner/impl/DirectoryContributionScanner.java Modified: tuscany/sca-java-2.x/branches/sca-java-2.0-M5/modules/contribution/src/main/java/org/apache/tuscany/sca/contribution/scanner/impl/DirectoryContributionScanner.java URL: http://svn.apache.org/viewvc/tuscany/sca-java-2.x/branches/sca-java-2.0-M5/modules/contribution/src/main/java/org/apache/tuscany/sca/contribution/scanner/impl/DirectoryContributionScanner.java?rev=1003857&r1=1003856&r2=1003857&view=diff ============================================================================== --- tuscany/sca-java-2.x/branches/sca-java-2.0-M5/modules/contribution/src/main/java/org/apache/tuscany/sca/contribution/scanner/impl/DirectoryContributionScanner.java (original) +++ tuscany/sca-java-2.x/branches/sca-java-2.0-M5/modules/contribution/src/main/java/org/apache/tuscany/sca/contribution/scanner/impl/DirectoryContributionScanner.java Sat Oct 2 18:47:58 2010 @@ -135,7 +135,7 @@ public class DirectoryContributionScanne } } catch (AccessControlException e) { //TUSCANY-3667 - Log the AccessControlException error and continue without processing the file/directory - logger.log(Level.SEVERE, "Error traversing file:" + file.getPath()); + logger.log(Level.WARNING, "Error traversing file:" + file.getPath()); } }