Rollup merge of #78699 - pietroalbini:lldb-error, r=jyn514
Show more error information in lldb_batchmode Even more information to try and debug #78665.
This commit is contained in:
commit
f9dd8d37c2
1 changed files with 2 additions and 2 deletions
|
@ -28,7 +28,7 @@ except ModuleNotFoundError:
|
||||||
import _thread as thread
|
import _thread as thread
|
||||||
|
|
||||||
# Set this to True for additional output
|
# Set this to True for additional output
|
||||||
DEBUG_OUTPUT = False
|
DEBUG_OUTPUT = True
|
||||||
|
|
||||||
|
|
||||||
def print_debug(s):
|
def print_debug(s):
|
||||||
|
@ -102,7 +102,7 @@ def execute_command(command_interpreter, command):
|
||||||
registered_breakpoints.add(breakpoint_id)
|
registered_breakpoints.add(breakpoint_id)
|
||||||
else:
|
else:
|
||||||
print("Error while trying to register breakpoint callback, id = " +
|
print("Error while trying to register breakpoint callback, id = " +
|
||||||
str(breakpoint_id))
|
str(breakpoint_id) + ", message = " + str(res.GetError()))
|
||||||
else:
|
else:
|
||||||
print(res.GetError())
|
print(res.GetError())
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue