diff --git a/compiler/daemon/daemon-client/src/org/jetbrains/kotlin/daemon/client/KotlinCompilerClient.kt b/compiler/daemon/daemon-client/src/org/jetbrains/kotlin/daemon/client/KotlinCompilerClient.kt index 06ce7d51026..4ec95bfacf3 100644 --- a/compiler/daemon/daemon-client/src/org/jetbrains/kotlin/daemon/client/KotlinCompilerClient.kt +++ b/compiler/daemon/daemon-client/src/org/jetbrains/kotlin/daemon/client/KotlinCompilerClient.kt @@ -101,11 +101,7 @@ object KotlinCompilerClient { fun CompileService.leaseImpl(): CompileServiceSession? { // the newJVMOptions could be checked here for additional parameters, if needed registerClient(clientAliveFlagFile.absolutePath) - val javaExecutablePath = compilerId.javaExecutable?.absolutePath ?: "'user jvm'" - reportingTargets.report( - DaemonReportCategory.DEBUG, - "connected to the daemon. Daemon is using following 'java' executable to run itself: $javaExecutablePath" - ) + reportingTargets.report(DaemonReportCategory.DEBUG, "connected to the daemon") if (!leaseSession) return CompileServiceSession(this, CompileService.NO_SESSION)