diff --git a/modules/kobalt-plugin-api/src/main/kotlin/com/beust/kobalt/internal/DynamicGraph.kt b/modules/kobalt-plugin-api/src/main/kotlin/com/beust/kobalt/internal/DynamicGraph.kt index dc41e9e2..da1dc72d 100644 --- a/modules/kobalt-plugin-api/src/main/kotlin/com/beust/kobalt/internal/DynamicGraph.kt +++ b/modules/kobalt-plugin-api/src/main/kotlin/com/beust/kobalt/internal/DynamicGraph.kt @@ -142,7 +142,7 @@ class DynamicGraph { * (they will be added by this method). Makes "to" depend on "from". */ fun addEdge(from: T, to: T) { - log(1, "@@@@@ NODE $to DEPENDS ON $from") + log(3, "Node $from depends on $to") nodes.add(from) nodes.add(to) val fromNode = addNode(from)