Skip to content

Commit fb28dca

Browse files
authored
1 parent e319464 commit fb28dca

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/vs/platform/utilityProcess/electron-main/utilityProcess.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -244,7 +244,7 @@ export class UtilityProcess extends Disposable {
244244
this.process = utilityProcess.fork(modulePath, args, {
245245
serviceName,
246246
env,
247-
execArgv,
247+
execArgv, // !!! Add `--trace-warnings` for node.js tracing !!!
248248
allowLoadingUnsignedLibraries,
249249
respondToAuthRequestsFromMainProcess,
250250
stdio

src/vs/workbench/contrib/chat/browser/chatStatus.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -206,7 +206,7 @@ export class ChatStatusBarEntry extends Disposable implements IWorkbenchContribu
206206

207207
container.appendChild($('div.header', undefined, localize('usageTitle', "Copilot Free Usage")));
208208

209-
const chatQuotaIndicator = this.createQuotaIndicator(container, chatTotal, chatRemaining, localize('chatsLabel', "Chats messages"));
209+
const chatQuotaIndicator = this.createQuotaIndicator(container, chatTotal, chatRemaining, localize('chatsLabel', "Chat messages"));
210210
const completionsQuotaIndicator = this.createQuotaIndicator(container, completionsTotal, completionsRemaining, localize('completionsLabel', "Code completions"));
211211

212212
container.appendChild($('div.description', undefined, localize('limitQuota', "Limits will reset on {0}.", this.dateFormatter.value.format(quotaResetDate))));

0 commit comments

Comments
 (0)