From 5ee122cdae80f392b7c826f6ac40a0c3c5cec0cc Mon Sep 17 00:00:00 2001 From: Michael Telatynski <7t3chguy@gmail.com> Date: Fri, 28 Feb 2025 12:14:10 +0000 Subject: [PATCH] Add logging Signed-off-by: Michael Telatynski <7t3chguy@gmail.com> --- src/ipc.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/ipc.ts b/src/ipc.ts index cd761055..feda1cfd 100644 --- a/src/ipc.ts +++ b/src/ipc.ts @@ -161,7 +161,8 @@ ipcMain.on("ipcCall", async function (_ev: IpcMainEvent, payload) { // rather than sending them a pickle key we did not store on their behalf. await keytar!.setPassword("element.io", `${args[0]}|${args[1]}`, pickleKey); ret = pickleKey; - } catch { + } catch (e) { + console.error("Failed to create pickle key", e); ret = null; } break;