We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 53b9d82 commit 9f6e02fCopy full SHA for 9f6e02f
src/session.ts
@@ -77,6 +77,14 @@ export class SessionManager implements Middleware {
77
.packageJSON
78
.version;
79
80
+ let osBitness = this.platformDetails.isOS64Bit ? "64-bit" : "32-bit";
81
+ let procBitness = this.platformDetails.isProcess64Bit ? "64-bit" : "32-bit";
82
+
83
+ this.log.write(
84
+ `Visual Studio Code v${vscode.version} ${procBitness}`,
85
+ `PowerShell Extension v${this.hostVersion}`,
86
+ `Operating System: ${OperatingSystem[this.platformDetails.operatingSystem]} ${osBitness}\n`);
87
88
// Fix the host version so that PowerShell can consume it.
89
// This is needed when the extension uses a prerelease
90
// version string like 0.9.1-insiders-1234.
0 commit comments