aboutsummaryrefslogtreecommitdiff
path: root/core
diff options
context:
space:
mode:
authorIgnat Beresnev <ignat.beresnev@jetbrains.com>2023-02-20 21:34:12 +0100
committerGitHub <noreply@github.com>2023-02-20 21:34:12 +0100
commitdbff38bacb25fc3021bbdd67ac25762bc0b0d30f (patch)
treebc26059428882dbee3f9bc95344fd9af887b3f1f /core
parent57622719edb912d7c3320f7e59cd6928e5c25e44 (diff)
downloaddokka-dbff38bacb25fc3021bbdd67ac25762bc0b0d30f.tar.gz
dokka-dbff38bacb25fc3021bbdd67ac25762bc0b0d30f.tar.bz2
dokka-dbff38bacb25fc3021bbdd67ac25762bc0b0d30f.zip
Change default logging level of console apps (#2871)
Diffstat (limited to 'core')
-rw-r--r--core/src/main/kotlin/utilities/DokkaLogging.kt2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/src/main/kotlin/utilities/DokkaLogging.kt b/core/src/main/kotlin/utilities/DokkaLogging.kt
index 80c762a3..39529324 100644
--- a/core/src/main/kotlin/utilities/DokkaLogging.kt
+++ b/core/src/main/kotlin/utilities/DokkaLogging.kt
@@ -39,7 +39,7 @@ fun interface MessageEmitter : (String) -> Unit {
}
class DokkaConsoleLogger(
- val minLevel: LoggingLevel = LoggingLevel.DEBUG,
+ val minLevel: LoggingLevel = LoggingLevel.PROGRESS,
private val emitter: MessageEmitter = MessageEmitter.consoleEmitter
) : DokkaLogger {
private val warningsCounter = AtomicInteger()