From a6ca887f1813777e7751f435b947095a20aafb58 Mon Sep 17 00:00:00 2001 From: Simon Ogorodnik Date: Thu, 18 Oct 2018 21:43:57 +0300 Subject: Remove debug logging --- core/src/main/kotlin/Formats/StructuredFormatService.kt | 3 --- 1 file changed, 3 deletions(-) (limited to 'core/src') diff --git a/core/src/main/kotlin/Formats/StructuredFormatService.kt b/core/src/main/kotlin/Formats/StructuredFormatService.kt index 33d26a93..7b18fcb4 100644 --- a/core/src/main/kotlin/Formats/StructuredFormatService.kt +++ b/core/src/main/kotlin/Formats/StructuredFormatService.kt @@ -407,7 +407,6 @@ abstract class StructuredOutputBuilder(val to: StringBuilder, for ((content, origins) in groupByContent) { if (content.isEmpty()) continue appendAsPlatformDependentBlock(effectivePlatformsForMembers(origins)) { platforms -> - println("FOG_GN_MULTI(${groupByContent.count { !it.key.isEmpty() }}):" + item.path.joinToString(" > ")) if (groupByContent.count { !it.key.isEmpty() } > 1) { appendPlatformsAsText(platforms) } @@ -455,7 +454,6 @@ abstract class StructuredOutputBuilder(val to: StringBuilder, for ((sign, nodes) in groupBySignature) { appendAsPlatformDependentBlock(effectivePlatformsForMembers(nodes)) { platforms -> - println("GNPM: ${platforms.toList().joinToString { "${it.first}->${it.second.map { it.path.joinToString(separator = ">") }}" }}") val first = nodes.first() first.detailOrNull(NodeKind.Signature)?.let { if (item.kind !in NodeKind.classLike || !isSingleNode) @@ -657,7 +655,6 @@ abstract class StructuredOutputBuilder(val to: StringBuilder, appendOriginsGroupByContent(node) } - println("GN: ${node.path}") SectionsBuilder(node).build() } } -- cgit