From 7836562ff1062a75c2c5f3d0d60fbe53c4982367 Mon Sep 17 00:00:00 2001 From: Manav Rathi Date: Sat, 27 Apr 2024 20:21:54 +0530 Subject: [PATCH] less noise --- desktop/src/main/utils-electron.ts | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/desktop/src/main/utils-electron.ts b/desktop/src/main/utils-electron.ts index b997d738e..e8a98f1df 100644 --- a/desktop/src/main/utils-electron.ts +++ b/desktop/src/main/utils-electron.ts @@ -33,11 +33,9 @@ export const execAsync = (command: string | string[]) => { ? shellescape(command) : command; const startTime = Date.now(); - log.debug(() => `Running shell command: ${escapedCommand}`); const result = execAsync_(escapedCommand); log.debug( - () => - `Completed in ${Math.round(Date.now() - startTime)} ms (${escapedCommand})`, + () => `${escapedCommand} (${Math.round(Date.now() - startTime)} ms)`, ); return result; };