diff options
Diffstat (limited to 'include/lldb/Utility/Log.h')
-rw-r--r-- | include/lldb/Utility/Log.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/include/lldb/Utility/Log.h b/include/lldb/Utility/Log.h index d856fc81eb0d1..80a80fc164853 100644 --- a/include/lldb/Utility/Log.h +++ b/include/lldb/Utility/Log.h @@ -96,6 +96,9 @@ public: } }; + + static void Initialize(); + //------------------------------------------------------------------ // Static accessors for logging channels //------------------------------------------------------------------ @@ -193,6 +196,8 @@ private: static uint32_t GetFlags(llvm::raw_ostream &stream, const ChannelMap::value_type &entry, llvm::ArrayRef<const char *> categories); + static void DisableLoggingChild(); + Log(const Log &) = delete; void operator=(const Log &) = delete; }; |