We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bf485ff commit dba7e97Copy full SHA for dba7e97
src/PowerShellEditorServices.Host/Program.cs
@@ -103,8 +103,9 @@ static void Main(string[] args)
103
Logger.Write(
104
LogLevel.Normal,
105
string.Format(
106
- "PowerShell Editor Services Host v{0} starting...",
107
- fileVersionInfo.FileVersion));
+ "PowerShell Editor Services Host v{0} starting (pid {1})...",
+ fileVersionInfo.FileVersion,
108
+ Process.GetCurrentProcess().Id));
109
110
// Start the server
111
server.Start().Wait();
0 commit comments