From 4a33d5a1c4a5590d316d0822f44a35ebea60da02 Mon Sep 17 00:00:00 2001 From: Oj Date: Sat, 12 Feb 2022 17:06:50 +0000 Subject: [PATCH] [CmdSwitches] Remove logging for each append --- src/cmdSwitches.js | 1 - 1 file changed, 1 deletion(-) diff --git a/src/cmdSwitches.js b/src/cmdSwitches.js index 6bd4f20..9b84170 100644 --- a/src/cmdSwitches.js +++ b/src/cmdSwitches.js @@ -47,7 +47,6 @@ module.exports = () => { key = key.replace('--', ''); // Replace --key with key (?) app.commandLine.appendSwitch(key, value); - log('CmdSwitches', 'Appended switch', key, value); } } }