fix: console.log

This commit is contained in:
charlesgauthereau
2026-02-13 15:58:53 +01:00
parent f0eafb1162
commit 362ca53efb
-2
View File
@@ -61,8 +61,6 @@ export async function getOrCreateMasterKey(filePath = path.join(process.cwd(), '
const key = randomBytes(32); // 256-bit key
console.log(key)
await fs.writeFile(filePath, key, {mode: 0o600});
console.log(`Master key generated at ${filePath}`);