forked from OSchip/llvm-project
Fix the log channel for gdb-remote. It should be "gdb-remote" now, instead of "process.gdb-remote".
llvm-svn: 133534
This commit is contained in:
parent
8d971ad5b7
commit
d0abdab8d1
|
@ -739,7 +739,7 @@ def lldbLoggings():
|
||||||
else:
|
else:
|
||||||
gdb_remote_log_option = "packets process"
|
gdb_remote_log_option = "packets process"
|
||||||
ci.HandleCommand(
|
ci.HandleCommand(
|
||||||
"log enable -n -f " + os.environ["GDB_REMOTE_LOG"] + " process.gdb-remote "
|
"log enable -n -f " + os.environ["GDB_REMOTE_LOG"] + " gdb-remote "
|
||||||
+ gdb_remote_log_option,
|
+ gdb_remote_log_option,
|
||||||
res)
|
res)
|
||||||
if not res.Succeeded():
|
if not res.Succeeded():
|
||||||
|
|
Loading…
Reference in New Issue