diff --git a/src/Terminal/Parser.ts b/src/Terminal/Parser.ts index bf9dc1883..e6b11dbe4 100644 --- a/src/Terminal/Parser.ts +++ b/src/Terminal/Parser.ts @@ -99,7 +99,6 @@ export function ParseCommand(command: string): (string | number | boolean)[] { const arg = command.substr(start, i - start); // If this is a number, convert it from a string to number - console.log(arg); if (isNumber(arg)) { args.push(parseFloat(arg)); } else if (arg === "true") { @@ -120,7 +119,6 @@ export function ParseCommand(command: string): (string | number | boolean)[] { const arg = command.substr(start, i - start); // If this is a number, convert it from string to number - console.log(arg); if (isNumber(arg)) { args.push(parseFloat(arg)); } else if (arg === "true") {