diff options
author | Robert Flack <flackr@gmail.com> | 2015-03-11 21:14:22 +0000 |
---|---|---|
committer | Robert Flack <flackr@gmail.com> | 2015-03-11 21:14:22 +0000 |
commit | 5f4b6c7c9e1f8d1fbda62ea3729284e7c3db27f1 (patch) | |
tree | d6612dfdb0c989723e090afa2d6e01d36898b91d /lldb/source/Plugins/Process/gdb-remote/ProcessGDBRemote.cpp | |
parent | 91bd698eafe5014cd2852d3bb6f5119b73128c6e (diff) | |
download | bcm5719-llvm-5f4b6c7c9e1f8d1fbda62ea3729284e7c3db27f1.tar.gz bcm5719-llvm-5f4b6c7c9e1f8d1fbda62ea3729284e7c3db27f1.zip |
Initialize ProcessGDBRemoteLog for LLGS to fix remote platform logging
This was previously initialized by ProcessGDBRemote::Initialize but lldb-server does not contain ProcessGDBRemote anymore so this needs to be initialized directly.
Differential Revision: http://reviews.llvm.org/D8186
llvm-svn: 231966
Diffstat (limited to 'lldb/source/Plugins/Process/gdb-remote/ProcessGDBRemote.cpp')
-rw-r--r-- | lldb/source/Plugins/Process/gdb-remote/ProcessGDBRemote.cpp | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/lldb/source/Plugins/Process/gdb-remote/ProcessGDBRemote.cpp b/lldb/source/Plugins/Process/gdb-remote/ProcessGDBRemote.cpp index 30caf92a335..e68a5d41a3a 100644 --- a/lldb/source/Plugins/Process/gdb-remote/ProcessGDBRemote.cpp +++ b/lldb/source/Plugins/Process/gdb-remote/ProcessGDBRemote.cpp @@ -2961,14 +2961,6 @@ ProcessGDBRemote::Initialize() GetPluginDescriptionStatic(), CreateInstance, DebuggerInitialize); - - Log::Callbacks log_callbacks = { - ProcessGDBRemoteLog::DisableLog, - ProcessGDBRemoteLog::EnableLog, - ProcessGDBRemoteLog::ListLogCategories - }; - - Log::RegisterLogChannel (ProcessGDBRemote::GetPluginNameStatic(), log_callbacks); } } |