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}" } }