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 887de1b commit b8021f4Copy full SHA for b8021f4
src/PowerShellEditorServices/Services/DebugAdapter/Handlers/LaunchAndAttachHandler.cs
@@ -427,7 +427,7 @@ await _executionService.ExecutePSCommandAsync(
427
}
428
catch (Exception e)
429
{
430
- string msg = $"Could not attach to process with ID: {processId}";
+ string msg = $"Could not attach to process with ID: {processId} - {e.Message}\n{e.StackTrace}";
431
_logger.LogError(e, msg);
432
throw new RpcErrorException(0, null, msg);
433
0 commit comments