mirror of
https://github.com/SpaceManiac/SpacemanDMM.git
synced 2025-12-23 05:36:47 +00:00
Log breakpoint confirm/hit more strongly
This commit is contained in:
parent
221951eb5b
commit
9bd61f6a28
1 changed files with 4 additions and 4 deletions
|
|
@ -194,12 +194,12 @@ handle_extools! {
|
|||
debug_output!(in self.seq, "[extools] Raw: {}", _message);
|
||||
}
|
||||
|
||||
on BreakpointSet(&mut self, bp) {
|
||||
debug_output!(in self.seq, "[extools] {}#{}@{} validated", bp.proc, bp.override_id, bp.offset);
|
||||
on BreakpointSet(&mut self, _bp) {
|
||||
debug_output!(in self.seq, "[extools] {}#{}@{} validated", _bp.proc, _bp.override_id, _bp.offset);
|
||||
}
|
||||
|
||||
on BreakpointHit(&mut self, hit) {
|
||||
debug_output!(in self.seq, "[extools] Hit breakpoint in {}", hit.proc);
|
||||
on BreakpointHit(&mut self, _hit) {
|
||||
debug_output!(in self.seq, "[extools] {}#{}@{} hit", _hit.proc, _hit.override_id, _hit.offset);
|
||||
self.seq.issue_event(dap_types::StoppedEvent {
|
||||
reason: "breakpoint".to_owned(),
|
||||
threadId: Some(0),
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue