From cf9273090a4c3f3c012afe797f2b33a4e4ff3151 Mon Sep 17 00:00:00 2001 From: DonIsaac <22823424+DonIsaac@users.noreply.github.com> Date: Wed, 16 Oct 2024 22:31:29 +0000 Subject: [PATCH] fix(editor): use human-readable output channel names (#6629) Changes the names of output channels our editor uses to make them friendlier. --- editors/vscode/client/extension.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/editors/vscode/client/extension.ts b/editors/vscode/client/extension.ts index ba822fd46ce06..043784983c0eb 100644 --- a/editors/vscode/client/extension.ts +++ b/editors/vscode/client/extension.ts @@ -17,8 +17,8 @@ import { join } from 'node:path'; const languageClientId = 'oxc-vscode'; const languageClientName = 'oxc'; -const outputChannelName = 'oxc_language_server'; -const traceOutputChannelName = 'oxc_language_server.trace'; +const outputChannelName = 'Oxc'; +const traceOutputChannelName = 'Oxc (Trace)'; const commandPrefix = 'oxc'; const enum OxcCommands {