summaryrefslogtreecommitdiff
path: root/source/Initialization/SystemInitializerCommon.cpp
diff options
context:
space:
mode:
authorPavel Labath <labath@google.com>2017-03-15 09:06:58 +0000
committerPavel Labath <labath@google.com>2017-03-15 09:06:58 +0000
commit3bca12468b9f1c746010ff3414e98aacf791e119 (patch)
treea7685ddd5008c82b45677b9cfd7edd6548f9f366 /source/Initialization/SystemInitializerCommon.cpp
parent237e37423cbeb76608d1548c0d3d80c8485a6082 (diff)
Remove lldb streams from the Log class completely
Summary: previously we switched to llvm streams for log output, this completes the switch for the error streams. I also clean up the includes and remove the unused argument from DisableAllLogChannels(). This required adding a bit of boiler plate to convert the output in the command interpreter, but that should go away when we switch command results to use llvm streams as well. Reviewers: zturner, eugene Subscribers: lldb-commits, emaste Differential Revision: https://reviews.llvm.org/D30894 git-svn-id: https://llvm.org/svn/llvm-project/lldb/trunk@297812 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'source/Initialization/SystemInitializerCommon.cpp')
-rw-r--r--source/Initialization/SystemInitializerCommon.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/Initialization/SystemInitializerCommon.cpp b/source/Initialization/SystemInitializerCommon.cpp
index 6ddfaec4c..9098bb7c9 100644
--- a/source/Initialization/SystemInitializerCommon.cpp
+++ b/source/Initialization/SystemInitializerCommon.cpp
@@ -121,5 +121,5 @@ void SystemInitializerCommon::Terminate() {
#endif
HostInfo::Terminate();
- Log::DisableAllLogChannels(nullptr);
+ Log::DisableAllLogChannels();
}