We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 164594e commit 16d763eCopy full SHA for 16d763e
1 file changed
src/vs/base/node/ps.ts
@@ -7,6 +7,7 @@
7
8
import { spawn, exec } from 'child_process';
9
import * as path from 'path';
10
+import * as nls from 'vs/nls';
11
import URI from 'vs/base/common/uri';
12
13
export interface ProcessItem {
@@ -120,6 +121,8 @@ export function listProcesses(rootPid: number): Promise<ProcessItem> {
120
121
122
if (process.platform === 'win32') {
123
124
+ console.log(nls.localize('collecting', 'Collecting CPU and memory information. This might take a couple of seconds.'));
125
+
126
interface ProcessInfo {
127
type: 'processInfo';
128
name: string;
0 commit comments