Skip to content

Commit 74e946e

Browse files
committed
removed console log
1 parent 486f457 commit 74e946e

1 file changed

Lines changed: 0 additions & 3 deletions

File tree

src/extension.ts

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -96,12 +96,9 @@ export async function activate(context: vscode.ExtensionContext) {
9696
// If argument field contains command to run script we do so here
9797
if (args.includes('@(')) {
9898
const scriptCommand = args.split("@(")[1].split(")")[0];
99-
console.log('script command ', scriptCommand);
10099
const scriptOutput = await runCommand(scriptCommand);
101100
// We expect that the script output that is to be used as arguments will be wrapped with ${}
102-
console.log('output', scriptOutput);
103101
const scriptOutputTrimmed = scriptOutput.split("@(")[1].split(")")[0];
104-
console.log('output trimmed', scriptOutputTrimmed);
105102
processedArgs = args.split("@(")[0] + scriptOutputTrimmed + args.split(")")?.[1];
106103
} else {
107104
processedArgs = args;

0 commit comments

Comments
 (0)