diff options
author | Enrico Granata <egranata@apple.com> | 2015-10-06 17:55:14 +0000 |
---|---|---|
committer | Enrico Granata <egranata@apple.com> | 2015-10-06 17:55:14 +0000 |
commit | 4edfef454d1a7d7e2e53cef28ea87c3067b40a83 (patch) | |
tree | f8ab823e9196064d52609dafa2c2f397ed0fe8b3 /lldb/source/Core/FormatEntity.cpp | |
parent | cb14dd026549ed32d96e4bd7ffa44fdace0c17bb (diff) | |
download | bcm5719-llvm-4edfef454d1a7d7e2e53cef28ea87c3067b40a83.tar.gz bcm5719-llvm-4edfef454d1a7d7e2e53cef28ea87c3067b40a83.zip |
Create a logging category that is specific to data formatters activity
llvm-svn: 249433
Diffstat (limited to 'lldb/source/Core/FormatEntity.cpp')
-rw-r--r-- | lldb/source/Core/FormatEntity.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lldb/source/Core/FormatEntity.cpp b/lldb/source/Core/FormatEntity.cpp index daaf88fe45c..500518f6a23 100644 --- a/lldb/source/Core/FormatEntity.cpp +++ b/lldb/source/Core/FormatEntity.cpp @@ -533,7 +533,7 @@ ScanBracketedRange (llvm::StringRef subpath, int64_t& index_lower, int64_t& index_higher) { - Log *log(lldb_private::GetLogIfAllCategoriesSet (LIBLLDB_LOG_TYPES)); + Log *log(lldb_private::GetLogIfAllCategoriesSet (LIBLLDB_LOG_DATAFORMATTERS)); close_bracket_index = llvm::StringRef::npos; const size_t open_bracket_index = subpath.find('['); if (open_bracket_index == llvm::StringRef::npos) @@ -670,7 +670,7 @@ ExpandIndexedExpression (ValueObject* valobj, StackFrame* frame, bool deref_pointer) { - Log *log(lldb_private::GetLogIfAllCategoriesSet (LIBLLDB_LOG_TYPES)); + Log *log(lldb_private::GetLogIfAllCategoriesSet (LIBLLDB_LOG_DATAFORMATTERS)); const char* ptr_deref_format = "[%d]"; std::string ptr_deref_buffer(10,0); ::sprintf(&ptr_deref_buffer[0], ptr_deref_format, index); @@ -731,7 +731,7 @@ DumpValue (Stream &s, if (valobj == NULL) return false; - Log *log(lldb_private::GetLogIfAllCategoriesSet (LIBLLDB_LOG_TYPES)); + Log *log(lldb_private::GetLogIfAllCategoriesSet (LIBLLDB_LOG_DATAFORMATTERS)); Format custom_format = eFormatInvalid; ValueObject::ValueObjectRepresentationStyle val_obj_display = entry.string.empty() ? ValueObject::eValueObjectRepresentationStyleValue : ValueObject::eValueObjectRepresentationStyleSummary; |