mirror of
https://github.com/rust-lang/rust.git
synced 2025-01-29 16:13:40 +00:00
lldb: avoid mixing "Hit breakpoint" message with other output.
This commit is contained in:
parent
824383d4ab
commit
625a9d6a4b
@ -45,7 +45,10 @@ def normalize_whitespace(s):
|
||||
|
||||
def breakpoint_callback(frame, bp_loc, dict):
|
||||
"""This callback is registered with every breakpoint and makes sure that the
|
||||
frame containing the breakpoint location is selected"""
|
||||
frame containing the breakpoint location is selected """
|
||||
|
||||
# HACK(eddyb) print a newline to avoid continuing an unfinished line.
|
||||
print("")
|
||||
print("Hit breakpoint " + str(bp_loc))
|
||||
|
||||
# Select the frame and the thread containing it
|
||||
|
Loading…
Reference in New Issue
Block a user