This repository was archived by the owner on May 19, 2025. It is now read-only.
File tree Expand file tree Collapse file tree 2 files changed +0
-8
lines changed Expand file tree Collapse file tree 2 files changed +0
-8
lines changed Original file line number Diff line number Diff line change @@ -116,19 +116,14 @@ async function getJSONMachineList(macadam: Macadam): Promise<MachineJSONListOutp
116
116
try {
117
117
const macadamCli = await macadam . getExecutable ( ) ;
118
118
const { stdout, stderr } = await extensionApi . process . exec ( macadamCli , [ 'list' ] ) ;
119
- console . log ( stdout ) ;
120
119
if ( stdout !== '' ) {
121
- console . log ( "stdout" ) ;
122
120
list . push ( ...( JSON . parse ( stdout ) as MachineJSON [ ] ) ) ;
123
121
}
124
122
error = stderr ;
125
123
} catch ( err ) {
126
124
error = getErrorMessage ( err ) ;
127
125
}
128
126
129
- console . log ( list . length ) ;
130
- console . log ( error ) ;
131
-
132
127
return { list, error } ;
133
128
}
134
129
@@ -249,8 +244,6 @@ async function updateMachines(
249
244
// init machines available
250
245
const machineListOutput = await getJSONMachineList ( macadam ) ;
251
246
252
- console . log ( 'qui' ) ;
253
-
254
247
if ( machineListOutput . error ) {
255
248
// TODO handle the error
256
249
}
Original file line number Diff line number Diff line change @@ -111,7 +111,6 @@ export class ProviderConnectionShellAccessImpl implements ProviderConnectionShel
111
111
this . closeStream ( ) ;
112
112
} )
113
113
. on ( 'data' , ( data : string ) => {
114
- console . error ( data ) ;
115
114
this . onDataEmit . fire ( { data : data } ) ;
116
115
} ) ;
117
116
} ) ;
You can’t perform that action at this time.
0 commit comments