From 80257dc58ff9c74eb4a579e19decd470e29483ce Mon Sep 17 00:00:00 2001 From: Matt Groth Date: Sat, 21 Oct 2023 22:38:38 -0400 Subject: [PATCH] Remove print statement This print statement should either be delated, as I did here, or if it must be kept should be properly logged at an INFO level so that gradle builds that are at the WARN level do not see this. --- .../kotlin/backend/konan/cexport/CAdapterApiExporter.kt | 1 - 1 file changed, 1 deletion(-) diff --git a/kotlin-native/backend.native/compiler/ir/backend.native/src/org/jetbrains/kotlin/backend/konan/cexport/CAdapterApiExporter.kt b/kotlin-native/backend.native/compiler/ir/backend.native/src/org/jetbrains/kotlin/backend/konan/cexport/CAdapterApiExporter.kt index 08fd7a71b9e..e82111f85ef 100644 --- a/kotlin-native/backend.native/compiler/ir/backend.native/src/org/jetbrains/kotlin/backend/konan/cexport/CAdapterApiExporter.kt +++ b/kotlin-native/backend.native/compiler/ir/backend.native/src/org/jetbrains/kotlin/backend/konan/cexport/CAdapterApiExporter.kt @@ -245,7 +245,6 @@ internal class CAdapterApiExporter( output("#endif /* KONAN_${prefix.uppercase()}_H */") outputStreamWriter.close() - println("Produced library API in ${prefix}_api.h") outputStreamWriter = cppAdapterFile.printWriter()