Skip to content

Commit 3b6968e

Browse files
Use forced logging via Logger.warn()
1 parent 6de54cc commit 3b6968e

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

ksp/src/main/kotlin/io/spine/tools/core/jvm/ksp/gradle/KspBasedPlugin.kt

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -232,8 +232,9 @@ private fun Project.makeKspTasksDependOnSpineCompiler() {
232232
// We do this instead of `dependsOn` because historically it
233233
// proves to be unreliable in this particular case.
234234
kspTask.mustRunAfter(taskName.value())
235-
System.err.println(
236-
"**** `${kspTask.name}` set to run after `${taskName.value()}` in project `$name`."
235+
logger.warn(
236+
"[CoreJvm Compiler]" +
237+
" `${kspTask.name}` set to run after `${taskName.value()}` in project `$name`."
237238
)
238239
}
239240
}

0 commit comments

Comments
 (0)