Skip to content

Commit

Permalink
Change log level to INFO for messages about alpha plugin versions (#2693
Browse files Browse the repository at this point in the history
)
  • Loading branch information
IgnatBeresnev committed Oct 7, 2022
1 parent 40da670 commit 8317436
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
Expand Up @@ -43,7 +43,7 @@ class GfmPlugin : DokkaPlugin() {
internal val alphaVersionNotifier by extending {
CoreExtensions.postActions providing { ctx ->
PostAction {
ctx.logger.warn("GFM output format is in Alpha version, use at your own risk, expect bugs and migration issues")
ctx.logger.info("GFM output format is in Alpha version, use at your own risk, expect bugs and migration issues")
}
}
}
Expand Down
Expand Up @@ -86,7 +86,7 @@ class JavadocPlugin : DokkaPlugin() {
internal val alphaVersionNotifier by extending {
CoreExtensions.postActions providing { ctx ->
PostAction {
ctx.logger.warn("Javadoc output format is in Alpha version, use at your own risk, expect bugs and migration issues")
ctx.logger.info("Javadoc output format is in Alpha version, use at your own risk, expect bugs and migration issues")
}
}
}
Expand Down
2 changes: 1 addition & 1 deletion plugins/jekyll/src/main/kotlin/JekyllPlugin.kt
Expand Up @@ -52,7 +52,7 @@ class JekyllPlugin : DokkaPlugin() {
internal val alphaVersionNotifier by extending {
CoreExtensions.postActions providing { ctx ->
PostAction {
ctx.logger.warn("Jekyll output format is in Alpha version, use at your own risk, expect bugs and migration issues")
ctx.logger.info("Jekyll output format is in Alpha version, use at your own risk, expect bugs and migration issues")
}
}
}
Expand Down
Expand Up @@ -34,7 +34,7 @@ class KotlinAsJavaPlugin : DokkaPlugin() {
internal val alphaVersionNotifier by extending {
CoreExtensions.postActions providing { ctx ->
PostAction {
ctx.logger.warn("KotlinAsJava plugin is in Alpha version, use at your own risk, expect bugs and migration issues")
ctx.logger.info("KotlinAsJava plugin is in Alpha version, use at your own risk, expect bugs and migration issues")
}
}
}
Expand Down

0 comments on commit 8317436

Please sign in to comment.