Skip to content

Commit 06ee267

Browse files
committed
Remove log
1 parent aad722c commit 06ee267

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

backend/shared/src/encryption.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ export function encryptMessage(plaintext: string) {
3232
const ciphertext = Buffer.concat([cipher.update(plaintext, "utf8"), cipher.final()]);
3333
const tag = cipher.getAuthTag();
3434

35-
console.debug(plaintext, iv, ciphertext, tag)
35+
// console.debug(plaintext, iv, ciphertext, tag)
3636

3737
return {
3838
ciphertext: ciphertext.toString("base64"),

0 commit comments

Comments
 (0)