diff options
author | Pavel Labath <pavel@labath.sk> | 2022-01-31 15:57:48 +0100 |
---|---|---|
committer | Pavel Labath <pavel@labath.sk> | 2022-02-02 14:13:08 +0100 |
commit | a007a6d84471bb956abe10974cac3066799f583f (patch) | |
tree | bfa09e71cc1ce894d3a1e7cab572c21eeaaf4117 /lldb/source/Commands/CommandObjectTarget.cpp | |
parent | 574ad2a84626ffb0e7a64559e9862f20aadc013a (diff) | |
download | llvm-a007a6d84471bb956abe10974cac3066799f583f.zip llvm-a007a6d84471bb956abe10974cac3066799f583f.tar.gz llvm-a007a6d84471bb956abe10974cac3066799f583f.tar.bz2 |
[lldb] Convert "LLDB" log channel to the new API
Diffstat (limited to 'lldb/source/Commands/CommandObjectTarget.cpp')
-rw-r--r-- | lldb/source/Commands/CommandObjectTarget.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lldb/source/Commands/CommandObjectTarget.cpp b/lldb/source/Commands/CommandObjectTarget.cpp index 157065b..2cc3a90 100644 --- a/lldb/source/Commands/CommandObjectTarget.cpp +++ b/lldb/source/Commands/CommandObjectTarget.cpp @@ -1034,7 +1034,7 @@ protected: const char *to = command.GetArgumentAtIndex(i + 1); if (from[0] && to[0]) { - Log *log = lldb_private::GetLogIfAllCategoriesSet(LIBLLDB_LOG_HOST); + Log *log = GetLog(LLDBLog::Host); if (log) { LLDB_LOGF(log, "target modules search path adding ImageSearchPath " |