[Lldb-commits] [lldb] r331239 - Log to the process channel, not target twice.

Jason Molenda via lldb-commits lldb-commits at lists.llvm.org
Mon Apr 30 17:42:17 PDT 2018


Author: jmolenda
Date: Mon Apr 30 17:42:17 2018
New Revision: 331239

URL: http://llvm.org/viewvc/llvm-project?rev=331239&view=rev
Log:
Log to the process channel, not target twice.

Modified:
    lldb/trunk/source/Utility/ArchSpec.cpp

Modified: lldb/trunk/source/Utility/ArchSpec.cpp
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/source/Utility/ArchSpec.cpp?rev=331239&r1=331238&r2=331239&view=diff
==============================================================================
--- lldb/trunk/source/Utility/ArchSpec.cpp (original)
+++ lldb/trunk/source/Utility/ArchSpec.cpp Mon Apr 30 17:42:17 2018
@@ -980,7 +980,7 @@ bool ArchSpec::SetArchitecture(Architect
           m_triple.setArch(core_def->machine);
       }
     } else {
-      Log *log(lldb_private::GetLogIfAnyCategoriesSet(LIBLLDB_LOG_TARGET | LIBLLDB_LOG_TARGET | LIBLLDB_LOG_PLATFORM));
+      Log *log(lldb_private::GetLogIfAnyCategoriesSet(LIBLLDB_LOG_TARGET | LIBLLDB_LOG_PROCESS | LIBLLDB_LOG_PLATFORM));
       if (log)
         log->Printf("Unable to find a core definition for cpu 0x%" PRIx32 " sub %" PRId32, cpu, sub);
     }




More information about the lldb-commits mailing list