Skip to content

Commit c32de75

Browse files
committed
lldb_batchmode: show more error information
Even more information to try and debug #78665.
1 parent 0af9f7e commit c32de75

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/etc/lldb_batchmode.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
import _thread as thread
2929

3030
# Set this to True for additional output
31-
DEBUG_OUTPUT = False
31+
DEBUG_OUTPUT = True
3232

3333

3434
def print_debug(s):
@@ -102,7 +102,7 @@ def execute_command(command_interpreter, command):
102102
registered_breakpoints.add(breakpoint_id)
103103
else:
104104
print("Error while trying to register breakpoint callback, id = " +
105-
str(breakpoint_id))
105+
str(breakpoint_id) + ", message = " + str(res.GetError()))
106106
else:
107107
print(res.GetError())
108108

0 commit comments

Comments
 (0)