File tree Expand file tree Collapse file tree 1 file changed +2
-1
lines changed
integration/vscode/ada/src Expand file tree Collapse file tree 1 file changed +2
-1
lines changed Original file line number Diff line number Diff line change @@ -9,6 +9,7 @@ import * as vscode from 'vscode';
99import * as yaml from 'yaml' ;
1010import { NotificationType , TestsuiteNotification } from './e3TestsuiteNotifications' ;
1111import { setTerminalEnvironment } from './helpers' ;
12+ import { logger } from './extension' ;
1213
1314interface Testsuite {
1415 uri : vscode . Uri ;
@@ -102,7 +103,7 @@ export function activateE3TestsuiteIntegration(context: vscode.ExtensionContext)
102103 const jsonFname = tmpNameSync ( { postfix : '.json' } ) ;
103104 const cmd = [ ts . python , ts . uri . fsPath , `--list-json=${ jsonFname } ` ] ;
104105
105- console . log ( `Loading tests from: ${ ts . uri . fsPath } ` ) ;
106+ logger . info ( `Loading tests from: ${ ts . uri . fsPath } ` ) ;
106107 rootItem . busy = true ;
107108 await new Promise < TestInfo [ ] > ( ( resolve , reject ) => {
108109 const output : Buffer [ ] = [ ] ;
You can’t perform that action at this time.
0 commit comments