From 1bb64ffa2273b93c2f19a35b776dc3df145486c8 Mon Sep 17 00:00:00 2001 From: Yahor Berdnikau Date: Mon, 14 Jun 2021 14:06:46 +0200 Subject: [PATCH] Revert "Print path to java executable Kotlin daemon was started with." This reverts commit 3e69bcba474d498c74a0e9827aa833f2381d43d8. --- .../jetbrains/kotlin/daemon/client/KotlinCompilerClient.kt | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) 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)