From 04ecd02f404a25b83d222866650565873bbb1e73 Mon Sep 17 00:00:00 2001 From: Jim Ehrismann Date: Wed, 1 Dec 2021 16:55:47 -0500 Subject: [PATCH] add debug for locating startup issues Signed-off-by: Jim Ehrismann --- src/main/index.ts | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/src/main/index.ts b/src/main/index.ts index e5b7f3d9f2..6e2cfd9d9e 100644 --- a/src/main/index.ts +++ b/src/main/index.ts @@ -90,7 +90,9 @@ if (process.env.LENS_DISABLE_GPU) { app.disableHardwareAcceleration(); } +logger.debug("initializeRemote()"); initializeRemote(); +logger.debug("configurePackages()"); configurePackages(); mangleProxyEnv(); initializers.initIpcMainHandlers(); @@ -99,6 +101,8 @@ if (app.commandLine.getSwitchValue("proxy-server") !== "") { process.env.HTTPS_PROXY = app.commandLine.getSwitchValue("proxy-server"); } +logger.debug("lprm stuff"); + if (!app.requestSingleInstanceLock()) { app.exit(); } else { @@ -112,6 +116,8 @@ if (!app.requestSingleInstanceLock()) { } app.on("second-instance", (event, argv) => { + logger.debug("second-instance message"); + const lprm = LensProtocolRouterMain.createInstance(); for (const arg of argv) { @@ -295,6 +301,8 @@ autoUpdater.on("before-quit-for-update", () => { }); app.on("will-quit", (event) => { + logger.debug("will-quit message"); + // This is called when the close button of the main window is clicked const lprm = LensProtocolRouterMain.getInstance(false); @@ -324,6 +332,8 @@ app.on("will-quit", (event) => { }); app.on("open-url", (event, rawUrl) => { + logger.debug("open-url message"); + // lens:// protocol handler event.preventDefault(); LensProtocolRouterMain.getInstance().route(rawUrl); @@ -343,3 +353,5 @@ export { Mobx, LensExtensions, }; + +logger.debug("waiting for messages");