Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Change log level to INFO for messages about alpha plugin versions #2693

Merged
merged 1 commit into from Oct 7, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
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