From 24610e6521aa1ecf87bf7c1ad5d9ea277c23605a Mon Sep 17 00:00:00 2001 From: Tarrgon <61888458+Tarrgon@users.noreply.github.com> Date: Tue, 30 Jun 2026 15:07:25 -0400 Subject: [PATCH] Remove log --- scripts/encrypt-data.js | 1 - src/shared/Encrypter.ts | 1 - 2 files changed, 2 deletions(-) diff --git a/scripts/encrypt-data.js b/scripts/encrypt-data.js index 3d0d77d..91ae802 100644 --- a/scripts/encrypt-data.js +++ b/scripts/encrypt-data.js @@ -72,7 +72,6 @@ async function main() { class Encrypter { static initialize(encryptionKey) { - console.log(`Initializing encrypter with key: ${encryptionKey}`); this.key = crypto.scryptSync(encryptionKey, 'salt', 32); } static encrypt(clearText) { diff --git a/src/shared/Encrypter.ts b/src/shared/Encrypter.ts index 8916776..e9047fc 100644 --- a/src/shared/Encrypter.ts +++ b/src/shared/Encrypter.ts @@ -8,7 +8,6 @@ export class Encrypter { private static key: Buffer; static initialize(encryptionKey: string) { - console.log(`Initializing encrypter with key: ${encryptionKey}`); this.key = crypto.scryptSync(encryptionKey, 'salt', 32); }