Skip to content
This repository was archived by the owner on May 19, 2025. It is now read-only.

Commit 2bf66b4

Browse files
committed
remove console logs
Signed-off-by: lstocchi <[email protected]>
1 parent 21bbb41 commit 2bf66b4

File tree

2 files changed

+0
-8
lines changed

2 files changed

+0
-8
lines changed

src/extension.ts

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -116,19 +116,14 @@ async function getJSONMachineList(macadam: Macadam): Promise<MachineJSONListOutp
116116
try {
117117
const macadamCli = await macadam.getExecutable();
118118
const { stdout, stderr } = await extensionApi.process.exec(macadamCli, ['list']);
119-
console.log(stdout);
120119
if (stdout !== '') {
121-
console.log("stdout");
122120
list.push(...(JSON.parse(stdout) as MachineJSON[]));
123121
}
124122
error = stderr;
125123
} catch (err) {
126124
error = getErrorMessage(err);
127125
}
128126

129-
console.log(list.length);
130-
console.log(error);
131-
132127
return { list, error };
133128
}
134129

@@ -249,8 +244,6 @@ async function updateMachines(
249244
// init machines available
250245
const machineListOutput = await getJSONMachineList(macadam);
251246

252-
console.log('qui');
253-
254247
if (machineListOutput.error) {
255248
// TODO handle the error
256249
}

src/macadam-machine-stream.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,6 @@ export class ProviderConnectionShellAccessImpl implements ProviderConnectionShel
111111
this.closeStream();
112112
})
113113
.on('data', (data: string) => {
114-
console.error(data);
115114
this.onDataEmit.fire({ data: data });
116115
});
117116
});

0 commit comments

Comments
 (0)