summaryrefslogtreecommitdiffstats
path: root/sca-java-2.x/branches
diff options
context:
space:
mode:
authorlresende <lresende@13f79535-47bb-0310-9956-ffa450edef68>2010-10-02 18:47:58 +0000
committerlresende <lresende@13f79535-47bb-0310-9956-ffa450edef68>2010-10-02 18:47:58 +0000
commitdad485a76cb42460e3c1416d1004e937745d9a34 (patch)
tree4373f074ad72baf096b085d32b0db95fea78b8d6 /sca-java-2.x/branches
parent553e343a0dd37a5c83bb3fe4b09bd1dd28230cd2 (diff)
TUSCANY-3667 - Making exception logged as warning instead of error
git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@1003857 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'sca-java-2.x/branches')
-rw-r--r--sca-java-2.x/branches/sca-java-2.0-M5/modules/contribution/src/main/java/org/apache/tuscany/sca/contribution/scanner/impl/DirectoryContributionScanner.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/sca-java-2.x/branches/sca-java-2.0-M5/modules/contribution/src/main/java/org/apache/tuscany/sca/contribution/scanner/impl/DirectoryContributionScanner.java b/sca-java-2.x/branches/sca-java-2.0-M5/modules/contribution/src/main/java/org/apache/tuscany/sca/contribution/scanner/impl/DirectoryContributionScanner.java
index 6358142244..3867f8c333 100644
--- a/sca-java-2.x/branches/sca-java-2.0-M5/modules/contribution/src/main/java/org/apache/tuscany/sca/contribution/scanner/impl/DirectoryContributionScanner.java
+++ b/sca-java-2.x/branches/sca-java-2.0-M5/modules/contribution/src/main/java/org/apache/tuscany/sca/contribution/scanner/impl/DirectoryContributionScanner.java
@@ -135,7 +135,7 @@ public class DirectoryContributionScanner implements ContributionScanner {
}
} 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());
}
}