[Lldb-commits] [lldb] [LLDB][NVIDIA] Add Disassembler log channel (PR #148290)

Greg Clayton via lldb-commits lldb-commits at lists.llvm.org
Fri Jul 11 13:30:36 PDT 2025


================
@@ -1146,7 +1146,7 @@ class InstructionLLVMC : public lldb_private::Instruction {
       }
     }
 
-    if (Log *log = GetLog(LLDBLog::Process)) {
+    if (Log *log = GetLog(LLDBLog::Disassembler)) {
----------------
clayborg wrote:

We do have the option to specify multiple flag bits:
```
if (Log *log = GetLog(LLDBLog::Process  | LLDBLog::Disassembler)) {
```
We might want to add this to ensure that the logging behavior doesn't change.

https://github.com/llvm/llvm-project/pull/148290


More information about the lldb-commits mailing list