From d3c5af2adbdde2a11e279a1119f302f503f4a391 Mon Sep 17 00:00:00 2001 From: Mojtaba Chenani Date: Thu, 19 Oct 2023 11:10:05 +0200 Subject: [PATCH] remove logs --- .../src/commonMain/kotlin/com/wire/kalium/cryptography/IDs.kt | 3 --- 1 file changed, 3 deletions(-) diff --git a/cryptography/src/commonMain/kotlin/com/wire/kalium/cryptography/IDs.kt b/cryptography/src/commonMain/kotlin/com/wire/kalium/cryptography/IDs.kt index 4a2d54517d7..38aa6fe781d 100644 --- a/cryptography/src/commonMain/kotlin/com/wire/kalium/cryptography/IDs.kt +++ b/cryptography/src/commonMain/kotlin/com/wire/kalium/cryptography/IDs.kt @@ -101,9 +101,6 @@ data class E2EIQualifiedClientId( // Base64url encode the UUID bytes without padding val base64UrlEncoded = uuidBytes.encodeBase64().removeSuffix("==") - // Print the base64url-encoded UUID without padding - println("Base64URL Encoded UUID (without padding): $base64UrlEncoded") - return "${base64UrlEncoded}:${value}@${userId.domain}" } }