aboutsummaryrefslogtreecommitdiff
path: root/runners/ant/src
diff options
context:
space:
mode:
authorPaweł Marks <pmarks@virtuslab.com>2019-11-14 16:13:30 +0100
committerBłażej Kardyś <bkardys@virtuslab.com>2019-11-25 16:24:16 +0100
commite7c23a65606a5a844d1664552c935590a06bf58d (patch)
treef107c49acef882e4b21e8b93d1a43c2981d56458 /runners/ant/src
parentdac6ba2a589aa1e8a9f4a9c7af32026be77776b3 (diff)
downloaddokka-e7c23a65606a5a844d1664552c935590a06bf58d.tar.gz
dokka-e7c23a65606a5a844d1664552c935590a06bf58d.tar.bz2
dokka-e7c23a65606a5a844d1664552c935590a06bf58d.zip
Few fixes for logger
Diffstat (limited to 'runners/ant/src')
-rw-r--r--runners/ant/src/main/kotlin/ant/dokka.kt4
1 files changed, 3 insertions, 1 deletions
diff --git a/runners/ant/src/main/kotlin/ant/dokka.kt b/runners/ant/src/main/kotlin/ant/dokka.kt
index 038bfca9..4bde902a 100644
--- a/runners/ant/src/main/kotlin/ant/dokka.kt
+++ b/runners/ant/src/main/kotlin/ant/dokka.kt
@@ -10,7 +10,9 @@ import org.jetbrains.dokka.DokkaConfiguration.ExternalDocumentationLink
import java.io.File
class AntLogger(val task: Task): DokkaLogger {
- override fun info(message: String) = task.log(message, Project.MSG_INFO)
+ override fun debug(message: String) = task.log(message, Project.MSG_DEBUG)
+ override fun info(message: String) = task.log(message, Project.MSG_VERBOSE)
+ override fun progress(message: String) = task.log(message, Project.MSG_INFO)
override fun warn(message: String) = task.log(message, Project.MSG_WARN)
override fun error(message: String) = task.log(message, Project.MSG_ERR)
}