|
3 | 3 | import { inject, injectable } from 'inversify';
|
4 | 4 | import * as path from 'path';
|
5 | 5 | import { EXTENSION_ROOT_DIR } from '../../common/constants';
|
6 |
| -import { traceError, traceInfo } from '../../common/logger'; |
| 6 | +import { traceError } from '../../common/logger'; |
7 | 7 | import { IDisposableRegistry } from '../../common/types';
|
8 | 8 | import { createDeferred, Deferred } from '../../common/utils/async';
|
9 | 9 | import { noop } from '../../common/utils/misc';
|
@@ -74,8 +74,8 @@ export class TestManagerRunner implements ITestManagerRunner {
|
74 | 74 | options.tests.summary.skipped = 0;
|
75 | 75 | let failFast = false;
|
76 | 76 | const testLauncherFile = path.join(EXTENSION_ROOT_DIR, 'pythonFiles', 'visualstudio_py_testlauncher.py');
|
77 |
| - this.server.on('error', traceError); |
78 |
| - this.server.on('log', (message: string, ...data: string[]) => traceInfo(`${message} ${data.join(' ')}`)); |
| 77 | + this.server.on('error', (message: string, ...data: string[]) => traceError(`${message} ${data.join(' ')}`)); |
| 78 | + this.server.on('log', noop); |
79 | 79 | this.server.on('connect', noop);
|
80 | 80 | this.server.on('start', noop);
|
81 | 81 | this.server.on('result', (data: ITestData) => {
|
|
0 commit comments