From fbce53d61a36fb490bb93675905f59a4494d87a0 Mon Sep 17 00:00:00 2001 From: Chubby Granny Chaser Date: Wed, 9 Apr 2025 07:59:34 +0100 Subject: [PATCH] fix: removing console log --- src/main/services/7zip.ts | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/main/services/7zip.ts b/src/main/services/7zip.ts index 20315b2f..9a9f85be 100644 --- a/src/main/services/7zip.ts +++ b/src/main/services/7zip.ts @@ -45,8 +45,6 @@ export class SevenZip { args.push("-o" + outputPath); } - console.log(this.binaryPath, args); - const child = cp.execFile(this.binaryPath, args, { cwd, });