Skip to content

Commit

Permalink
Fix the discovered version manager logging as [object Object] (#1920)
Browse files Browse the repository at this point in the history
This was missed in #1831
  • Loading branch information
Earlopain authored Apr 12, 2024
1 parent b39c12c commit 6883ece
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 6883ece

Please sign in to comment.