From e32e42e084d4e150387a7e9ec4ee00ae3974babd Mon Sep 17 00:00:00 2001 From: "sebastian.sellmair" Date: Wed, 15 Jul 2020 16:38:25 +0200 Subject: Use DokkaLogger instead of println and adjust log levels for less verbosity by default --- core/src/main/kotlin/plugability/DokkaContext.kt | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'core/src/main/kotlin/plugability/DokkaContext.kt') diff --git a/core/src/main/kotlin/plugability/DokkaContext.kt b/core/src/main/kotlin/plugability/DokkaContext.kt index 61ae1918..323039e9 100644 --- a/core/src/main/kotlin/plugability/DokkaContext.kt +++ b/core/src/main/kotlin/plugability/DokkaContext.kt @@ -205,9 +205,9 @@ private class DokkaContextConfigurationImpl( "\t${it.key} by " + (it.value.singleOrNull() ?: it.value) } - logger.progress("Loaded plugins: $pluginNames") - logger.progress("Loaded: $loadedListForDebug") - logger.progress("Suppressed: $suppressedList") + logger.info("Loaded plugins: $pluginNames") + logger.info("Loaded: $loadedListForDebug") + logger.info("Suppressed: $suppressedList") } } @@ -220,4 +220,4 @@ private fun checkClasspath(classLoader: URLClassLoader) { } } -private fun MutableMap>.listFor(key: K) = getOrPut(key, ::mutableListOf) \ No newline at end of file +private fun MutableMap>.listFor(key: K) = getOrPut(key, ::mutableListOf) -- cgit