From 45efbde5bb37c52d08106450a14ebbd54a23c928 Mon Sep 17 00:00:00 2001 From: Kamil Doległo Date: Mon, 20 May 2019 11:48:07 +0200 Subject: Update "Can't find node ..." warning message --- core/src/main/kotlin/Model/DocumentationReference.kt | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'core/src/main/kotlin/Model') diff --git a/core/src/main/kotlin/Model/DocumentationReference.kt b/core/src/main/kotlin/Model/DocumentationReference.kt index 1f2fc0c9..0b890a78 100644 --- a/core/src/main/kotlin/Model/DocumentationReference.kt +++ b/core/src/main/kotlin/Model/DocumentationReference.kt @@ -103,7 +103,8 @@ class NodeReferenceGraph { fun lookupOrWarn(signature: String, logger: DokkaLogger): DocumentationNode? { val result = nodeMap[signature] if (result == null) { - logger.warn("Can't find node by signature `$signature`") + logger.warn("Can't find node by signature `$signature`." + + "This is probably caused by invalid configuration of cross-module dependencies") } return result } -- cgit