[CmdSwitches] Remove switches logging, don't add unneeded wrapping flags

This commit is contained in:
Ducko 2022-02-15 13:47:36 +00:00
parent 13aa07117e
commit db0b3f1319
1 changed files with 0 additions and 4 deletions

View File

@ -31,10 +31,6 @@ module.exports = () => {
if (preset.includes(',')) cmdSwitches = combinePresets(preset.split(','));
if (cmdSwitches) {
cmdSwitches = `--flag-switches-begin ` + cmdSwitches + ` --flag-switches-end`; // Probably unneeded for Chromium / Electron manual flags but add anyway
log('CmdSwitches', 'Switches:', cmdSwitches);
module.exports.cmd = cmdSwitches;
module.exports.preset = preset;