From 058059691ae382588290b35f44aac58a65062274 Mon Sep 17 00:00:00 2001 From: Earlopain <14981592+Earlopain@users.noreply.github.com> Date: Mon, 22 Apr 2024 19:50:08 +0200 Subject: [PATCH] Fix logging manager on activation failure (#1952) Same as #1920 --- vscode/src/ruby.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vscode/src/ruby.ts b/vscode/src/ruby.ts index 8b97d1dc3..57b4150ec 100644 --- a/vscode/src/ruby.ts +++ b/vscode/src/ruby.ts @@ -174,7 +174,7 @@ export class Ruby implements RubyInterface { } await vscode.window.showErrorMessage( - `Failed to activate ${this.versionManager} environment: ${error.message}`, + `Failed to activate ${this.versionManager.identifier} environment: ${error.message}`, ); } }