From 6b2d5950d391e8e8eb4ada2febf77cb287b3ad40 Mon Sep 17 00:00:00 2001 From: Adrian Prantl Date: Fri, 23 Mar 2018 20:17:39 +0000 Subject: [PATCH] Log ObjC Runtime messages only in verbose mode llvm-svn: 328365 --- .../LanguageRuntime/ObjC/AppleObjCRuntime/AppleObjCRuntimeV2.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/AppleObjCRuntimeV2.cpp b/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/AppleObjCRuntimeV2.cpp index bdf79f7..8bcbba0 100644 --- a/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/AppleObjCRuntimeV2.cpp +++ b/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/AppleObjCRuntimeV2.cpp @@ -1440,8 +1440,8 @@ uint32_t AppleObjCRuntimeV2::ParseClassInfoArray(const DataExtractor &data, // uint32_t hash; // } __attribute__((__packed__)); - Log *log(GetLogIfAnyCategoriesSet(LIBLLDB_LOG_PROCESS | LIBLLDB_LOG_TYPES)); - + Log *log(GetLogIfAllCategoriesSet(LIBLLDB_LOG_TYPES + | LLDB_LOG_OPTION_VERBOSE)); uint32_t num_parsed = 0; // Iterate through all ClassInfo structures -- 2.7.4