diff --git a/editors/vscode/client/tools/formatter.ts b/editors/vscode/client/tools/formatter.ts index 1f3bb6ce304f5..062797b760ef6 100644 --- a/editors/vscode/client/tools/formatter.ts +++ b/editors/vscode/client/tools/formatter.ts @@ -319,19 +319,19 @@ export default class FormatterTool implements ToolInterface { async restartClient(): Promise { if (this.client === undefined) { - window.showErrorMessage("oxc client not found"); + window.showErrorMessage("oxfmt client not found"); return; } try { if (this.client.isRunning()) { await this.client.restart(); - window.showInformationMessage("oxc server restarted."); + window.showInformationMessage("oxfmt server restarted."); } else { await this.client.start(); } } catch (err) { - this.client.error("Restarting client failed", err, "force"); + this.client.error("Restarting oxfmt client failed", err, "force"); } } diff --git a/editors/vscode/client/tools/linter.ts b/editors/vscode/client/tools/linter.ts index d9fbaf3f44d0d..0fc977f23113a 100644 --- a/editors/vscode/client/tools/linter.ts +++ b/editors/vscode/client/tools/linter.ts @@ -253,19 +253,19 @@ export default class LinterTool implements ToolInterface { async restartClient(): Promise { if (this.client === undefined) { - window.showErrorMessage("oxc client not found"); + window.showErrorMessage("oxlint client not found"); return; } try { if (this.client.isRunning()) { await this.client.restart(); - window.showInformationMessage("oxc server restarted."); + window.showInformationMessage("oxlint server restarted."); } else { await this.client.start(); } } catch (err) { - this.client.error("Restarting client failed", err, "force"); + this.client.error("Restarting oxlint client failed", err, "force"); } }