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 2bb714e commit 3d096c6Copy full SHA for 3d096c6
cross-project-tests/debuginfo-tests/dexter/dex/debugger/DAP.py
@@ -647,7 +647,7 @@ def _step(self, step_request_string):
647
)
648
response = self._await_response(step_req_id)
649
if not response["success"]:
650
- raise DebuggerException(f"failed to {step_request_string}")
+ raise DebuggerException(f"failed to perform debugger action: '{step_request_string}'")
651
# If we've "stepped" to a breakpoint, then continue to hit the breakpoint properly.
652
# NB: This is an issue that only seems relevant to LLDB, but is also harmless outside of LLDB; if it turns out
653
# to cause issues for other debuggers, we can move it to a post-step hook.
0 commit comments