We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
Logger.warn()
1 parent 6de54cc commit 3b6968eCopy full SHA for 3b6968e
ksp/src/main/kotlin/io/spine/tools/core/jvm/ksp/gradle/KspBasedPlugin.kt
@@ -232,8 +232,9 @@ private fun Project.makeKspTasksDependOnSpineCompiler() {
232
// We do this instead of `dependsOn` because historically it
233
// proves to be unreliable in this particular case.
234
kspTask.mustRunAfter(taskName.value())
235
- System.err.println(
236
- "**** `${kspTask.name}` set to run after `${taskName.value()}` in project `$name`."
+ logger.warn(
+ "[CoreJvm Compiler]" +
237
+ " `${kspTask.name}` set to run after `${taskName.value()}` in project `$name`."
238
)
239
}
240
0 commit comments