Skip to content

Commit

Permalink
fix warning message, #60332
Browse files Browse the repository at this point in the history
  • Loading branch information
jrieken committed Nov 26, 2018
1 parent 456e8e6 commit 0bbbf26
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@ export class ExtensionsAutoProfiler extends Disposable implements IWorkbenchCont
const path = join(tmpdir(), `exthost-${Math.random().toString(16).slice(2, 8)}.cpuprofile`);
await writeFile(path, JSON.stringify(profile.data));

this._logService.warn(`UNRESPONSIVE extension host, 'top.id' took ${top!.percentage}% of ${duration / 1e3}ms, saved PROFILE here: '${path}'`, data);
this._logService.warn(`UNRESPONSIVE extension host, '${top.id}' took ${top!.percentage}% of ${duration / 1e3}ms, saved PROFILE here: '${path}'`, data);

/* __GDPR__
"exthostunresponsive" : {
Expand Down

0 comments on commit 0bbbf26

Please sign in to comment.