diff options
author | Jim Ingham <jingham@apple.com> | 2011-10-15 00:21:37 +0000 |
---|---|---|
committer | Jim Ingham <jingham@apple.com> | 2011-10-15 00:21:37 +0000 |
commit | 37cfeab3c0c86ab0c2eb1889af8a6484ad339400 (patch) | |
tree | 2b97c957471fe81fa7e478fe61b38264f34f8da5 /lldb/source/Plugins/Process/gdb-remote/ThreadGDBRemote.cpp | |
parent | 9e0a5b39002263f889f90d0ce8d74afeadbeb47e (diff) | |
download | bcm5719-llvm-37cfeab3c0c86ab0c2eb1889af8a6484ad339400.tar.gz bcm5719-llvm-37cfeab3c0c86ab0c2eb1889af8a6484ad339400.zip |
Quiet the default "log enable lldb step" output down a little bit.
llvm-svn: 142024
Diffstat (limited to 'lldb/source/Plugins/Process/gdb-remote/ThreadGDBRemote.cpp')
-rw-r--r-- | lldb/source/Plugins/Process/gdb-remote/ThreadGDBRemote.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lldb/source/Plugins/Process/gdb-remote/ThreadGDBRemote.cpp b/lldb/source/Plugins/Process/gdb-remote/ThreadGDBRemote.cpp index 2f9ee0fd5f2..7fe8cdeed3e 100644 --- a/lldb/source/Plugins/Process/gdb-remote/ThreadGDBRemote.cpp +++ b/lldb/source/Plugins/Process/gdb-remote/ThreadGDBRemote.cpp @@ -75,7 +75,7 @@ ThreadGDBRemote::WillResume (StateType resume_state) Thread::WillResume(resume_state); int signo = GetResumeSignal(); - lldb::LogSP log(lldb_private::GetLogIfAnyCategoriesSet (LIBLLDB_LOG_STEP)); + lldb::LogSP log(lldb_private::GetLogIfAnyCategoriesSet (GDBR_LOG_THREAD)); if (log) log->Printf ("Resuming thread: %4.4x with state: %s.", GetID(), StateAsCString(resume_state)); |