Skip to content

Commit 3d096c6

Browse files
committed
improve exception msg
1 parent 2bb714e commit 3d096c6

File tree

1 file changed

+1
-1
lines changed
  • cross-project-tests/debuginfo-tests/dexter/dex/debugger

1 file changed

+1
-1
lines changed

cross-project-tests/debuginfo-tests/dexter/dex/debugger/DAP.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -647,7 +647,7 @@ def _step(self, step_request_string):
647647
)
648648
response = self._await_response(step_req_id)
649649
if not response["success"]:
650-
raise DebuggerException(f"failed to {step_request_string}")
650+
raise DebuggerException(f"failed to perform debugger action: '{step_request_string}'")
651651
# If we've "stepped" to a breakpoint, then continue to hit the breakpoint properly.
652652
# NB: This is an issue that only seems relevant to LLDB, but is also harmless outside of LLDB; if it turns out
653653
# to cause issues for other debuggers, we can move it to a post-step hook.

0 commit comments

Comments
 (0)