aboutsummaryrefslogtreecommitdiff
path: root/runners/maven-plugin/src/main/kotlin/MavenDokkaLogger.kt
diff options
context:
space:
mode:
Diffstat (limited to 'runners/maven-plugin/src/main/kotlin/MavenDokkaLogger.kt')
-rw-r--r--runners/maven-plugin/src/main/kotlin/MavenDokkaLogger.kt25
1 files changed, 15 insertions, 10 deletions
diff --git a/runners/maven-plugin/src/main/kotlin/MavenDokkaLogger.kt b/runners/maven-plugin/src/main/kotlin/MavenDokkaLogger.kt
index 950af3e0..403fc773 100644
--- a/runners/maven-plugin/src/main/kotlin/MavenDokkaLogger.kt
+++ b/runners/maven-plugin/src/main/kotlin/MavenDokkaLogger.kt
@@ -4,19 +4,24 @@ import org.apache.maven.plugin.logging.Log
import org.jetbrains.dokka.utilities.DokkaLogger
class MavenDokkaLogger(val log: Log) : DokkaLogger {
- override fun error(message: String) {
- log.error(message)
- }
+ override var warningsCount: Int = 0
+ override var errorsCount: Int = 0
override fun debug(message: String) = log.debug(message)
-
- override fun info(message: String) {
- log.info(message)
- }
-
+ override fun info(message: String) = log.info(message)
override fun progress(message: String) = log.info(message)
+ override fun warn(message: String) = log.warn(message).also { warningsCount++ }
+ override fun error(message: String) = log.error(message).also { errorsCount++ }
- override fun warn(message: String) {
- log.warn(message)
+ override fun report() {
+ if (warningsCount > 0 || errorsCount > 0) {
+ log.info("Generation completed with $warningsCount warning" +
+ (if(warningsCount == 1) "" else "s") +
+ " and $errorsCount error" +
+ if(errorsCount == 1) "" else "s"
+ )
+ } else {
+ log.info("generation completed successfully")
+ }
}
} \ No newline at end of file