summaryrefslogtreecommitdiffstats
path: root/sca-java-2.x
diff options
context:
space:
mode:
authorantelder <antelder@13f79535-47bb-0310-9956-ffa450edef68>2010-03-05 01:26:00 +0000
committerantelder <antelder@13f79535-47bb-0310-9956-ffa450edef68>2010-03-05 01:26:00 +0000
commitd97753e4e92b873251bac044357ebc13f3e29a3d (patch)
tree564ee2a72767265caa0bd2b1cd2dd612e2827100 /sca-java-2.x
parent084834111de99cbba6cc9eb0b613973997097249 (diff)
Change to a lower log level as these warnings are coming out in lots of common uses of the runtime and there's nothing users can do about it
git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@919261 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'sca-java-2.x')
-rw-r--r--sca-java-2.x/trunk/modules/databinding/src/main/java/org/apache/tuscany/sca/databinding/impl/DirectedGraph.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/sca-java-2.x/trunk/modules/databinding/src/main/java/org/apache/tuscany/sca/databinding/impl/DirectedGraph.java b/sca-java-2.x/trunk/modules/databinding/src/main/java/org/apache/tuscany/sca/databinding/impl/DirectedGraph.java
index 44c42010ba..a551671452 100644
--- a/sca-java-2.x/trunk/modules/databinding/src/main/java/org/apache/tuscany/sca/databinding/impl/DirectedGraph.java
+++ b/sca-java-2.x/trunk/modules/databinding/src/main/java/org/apache/tuscany/sca/databinding/impl/DirectedGraph.java
@@ -207,11 +207,11 @@ public class DirectedGraph<V, E> implements Cloneable {
if (edge != null) {
// An existing edge has higher weight, let's replace it
if (edge.weight > weight) {
- logger.warning("An edge exists with higher weight: " + edge);
+ logger.fine("An edge exists with higher weight: " + edge);
removeEdge(edge);
} else {
// Don't add this edge
- logger.warning("An edge exists with lower weight: " + edge);
+ logger.fine("An edge exists with lower weight: " + edge);
return;
}
}