From dd9301dfc6fb47eef7ae2555e2dbe352938a3c21 Mon Sep 17 00:00:00 2001 From: Jim Ehrismann Date: Thu, 2 Dec 2021 08:58:35 -0500 Subject: [PATCH] improve startup log text Signed-off-by: Jim Ehrismann --- src/main/index.ts | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/src/main/index.ts b/src/main/index.ts index 6e2cfd9d9e..1c5b80042c 100644 --- a/src/main/index.ts +++ b/src/main/index.ts @@ -90,18 +90,22 @@ if (process.env.LENS_DISABLE_GPU) { app.disableHardwareAcceleration(); } -logger.debug("initializeRemote()"); +logger.debug("[APP-MAIN] initializing remote"); initializeRemote(); -logger.debug("configurePackages()"); + +logger.debug("[APP-MAIN] configuring packages"); configurePackages(); + mangleProxyEnv(); + +logger.debug("[APP-MAIN] initializing ipc main handlers"); initializers.initIpcMainHandlers(); if (app.commandLine.getSwitchValue("proxy-server") !== "") { process.env.HTTPS_PROXY = app.commandLine.getSwitchValue("proxy-server"); } -logger.debug("lprm stuff"); +logger.debug("[APP-MAIN] Lens protocol routing main"); if (!app.requestSingleInstanceLock()) { app.exit(); @@ -354,4 +358,4 @@ export { LensExtensions, }; -logger.debug("waiting for messages"); +logger.debug("[APP-MAIN] waiting for 'ready' and other messages");