diff options
author | Martin Storsjö <martin@martin.st> | 2019-11-18 12:31:33 +0200 |
---|---|---|
committer | Martin Storsjö <martin@martin.st> | 2019-11-19 09:12:50 +0200 |
commit | 926d283893ae764cfba0360badcd7cc9fef4dfe5 (patch) | |
tree | 73730a36d76437c8f6031d2e24c45ab911cf0c7d /lldb/source/Plugins/Process/gdb-remote/ProcessGDBRemote.cpp | |
parent | d044dcc5e492181b1517347013a780d9eda6c3c3 (diff) | |
download | bcm5719-llvm-926d283893ae764cfba0360badcd7cc9fef4dfe5.tar.gz bcm5719-llvm-926d283893ae764cfba0360badcd7cc9fef4dfe5.zip |
[lldb-server] Use LLDB_LOG_ERROR to consume Error<> even if logging is disabled
Differential Revision: https://reviews.llvm.org/D70386
Diffstat (limited to 'lldb/source/Plugins/Process/gdb-remote/ProcessGDBRemote.cpp')
-rw-r--r-- | lldb/source/Plugins/Process/gdb-remote/ProcessGDBRemote.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lldb/source/Plugins/Process/gdb-remote/ProcessGDBRemote.cpp b/lldb/source/Plugins/Process/gdb-remote/ProcessGDBRemote.cpp index 9e459cf3382..5d1dd79c2ff 100644 --- a/lldb/source/Plugins/Process/gdb-remote/ProcessGDBRemote.cpp +++ b/lldb/source/Plugins/Process/gdb-remote/ProcessGDBRemote.cpp @@ -3635,9 +3635,9 @@ bool ProcessGDBRemote::StartAsyncThread() { llvm::Expected<HostThread> async_thread = ThreadLauncher::LaunchThread( "<lldb.process.gdb-remote.async>", ProcessGDBRemote::AsyncThread, this); if (!async_thread) { - LLDB_LOG(lldb_private::GetLogIfAllCategoriesSet(LIBLLDB_LOG_HOST), - "failed to launch host thread: {}", - llvm::toString(async_thread.takeError())); + LLDB_LOG_ERROR(lldb_private::GetLogIfAllCategoriesSet(LIBLLDB_LOG_HOST), + async_thread.takeError(), + "failed to launch host thread: {}"); return false; } m_async_thread = *async_thread; |