We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 824383d commit 625a9d6Copy full SHA for 625a9d6
src/etc/lldb_batchmode.py
@@ -45,7 +45,10 @@ def normalize_whitespace(s):
45
46
def breakpoint_callback(frame, bp_loc, dict):
47
"""This callback is registered with every breakpoint and makes sure that the
48
- frame containing the breakpoint location is selected"""
+ frame containing the breakpoint location is selected """
49
+
50
+ # HACK(eddyb) print a newline to avoid continuing an unfinished line.
51
+ print("")
52
print("Hit breakpoint " + str(bp_loc))
53
54
# Select the frame and the thread containing it
0 commit comments