From 07539ebc8f1ad65315e9e4d36a6b2d11623d5389 Mon Sep 17 00:00:00 2001 From: Cedric Beust Date: Tue, 12 Apr 2016 23:44:19 -0700 Subject: [PATCH] Log. --- .../src/main/kotlin/com/beust/kobalt/internal/DynamicGraph.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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)