From 7648eaf7e948fcb0e974564205eefd0bde9bfcde Mon Sep 17 00:00:00 2001 From: Evan Simkowitz Date: Mon, 26 Aug 2024 13:53:04 -0700 Subject: [PATCH] don't log auth key on startup, lol --- emain/authkey.ts | 2 -- 1 file changed, 2 deletions(-) diff --git a/emain/authkey.ts b/emain/authkey.ts index 128730945..8b24eea0f 100644 --- a/emain/authkey.ts +++ b/emain/authkey.ts @@ -8,8 +8,6 @@ const AuthKeyHeader = "X-AuthKey"; export const AuthKeyEnv = "AUTH_KEY"; export const AuthKey = crypto.randomUUID(); -console.log("authKey", AuthKey); - ipcMain.on("get-auth-key", (event) => { event.returnValue = AuthKey; });