Skip to content

Commit dd0f5b2

Browse files
committed
Remove console logging
1 parent de1317d commit dd0f5b2

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

integration/vscode/ada/src/e3Testsuite.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ import * as vscode from 'vscode';
99
import * as yaml from 'yaml';
1010
import { NotificationType, TestsuiteNotification } from './e3TestsuiteNotifications';
1111
import { setTerminalEnvironment } from './helpers';
12+
import { logger } from './extension';
1213

1314
interface 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[] = [];

0 commit comments

Comments
 (0)