Skip to content

Commit 16d763e

Browse files
committed
Adding message about collecting CPU and memory information under Windows
1 parent 164594e commit 16d763e

1 file changed

Lines changed: 3 additions & 0 deletions

File tree

src/vs/base/node/ps.ts

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@
77

88
import { spawn, exec } from 'child_process';
99
import * as path from 'path';
10+
import * as nls from 'vs/nls';
1011
import URI from 'vs/base/common/uri';
1112

1213
export interface ProcessItem {
@@ -120,6 +121,8 @@ export function listProcesses(rootPid: number): Promise<ProcessItem> {
120121

121122
if (process.platform === 'win32') {
122123

124+
console.log(nls.localize('collecting', 'Collecting CPU and memory information. This might take a couple of seconds.'));
125+
123126
interface ProcessInfo {
124127
type: 'processInfo';
125128
name: string;

0 commit comments

Comments
 (0)