Skip to content

Commit

Permalink
Fix the discovered version manager logging as [object Object]
Browse files Browse the repository at this point in the history
This was missed in Shopify#1831
  • Loading branch information
Earlopain committed Apr 12, 2024
1 parent acee71a commit 9327c63
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion vscode/src/ruby.ts
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ export class Ruby implements RubyInterface {
if (this.versionManager.identifier === ManagerIdentifier.Auto) {
await this.discoverVersionManager();
this.outputChannel.info(
`Discovered version manager ${this.versionManager}`,
`Discovered version manager ${this.versionManager.identifier}`,
);
}

Expand Down

0 comments on commit 9327c63

Please sign in to comment.