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/DataFormatters/FormatManager.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/DataFormatters/FormatManager.cpp')
-rw-r--r-- | lldb/source/DataFormatters/FormatManager.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/lldb/source/DataFormatters/FormatManager.cpp b/lldb/source/DataFormatters/FormatManager.cpp index 3a5664f7c5c..9eb6e10f438 100644 --- a/lldb/source/DataFormatters/FormatManager.cpp +++ b/lldb/source/DataFormatters/FormatManager.cpp @@ -720,7 +720,7 @@ FormatManager::GetFormat (ValueObject& valobj, FormattersMatchData match_data(valobj, use_dynamic); TypeFormatImplSP retval; - Log *log(lldb_private::GetLogIfAllCategoriesSet (LIBLLDB_LOG_TYPES)); + Log *log(lldb_private::GetLogIfAllCategoriesSet (LIBLLDB_LOG_DATAFORMATTERS)); if (match_data.GetTypeForCache()) { if (log) @@ -803,7 +803,7 @@ FormatManager::GetSummaryFormat (ValueObject& valobj, FormattersMatchData match_data(valobj, use_dynamic); TypeSummaryImplSP retval; - Log *log(lldb_private::GetLogIfAllCategoriesSet (LIBLLDB_LOG_TYPES)); + Log *log(lldb_private::GetLogIfAllCategoriesSet (LIBLLDB_LOG_DATAFORMATTERS)); if (match_data.GetTypeForCache()) { if (log) @@ -887,7 +887,7 @@ FormatManager::GetSyntheticChildren (ValueObject& valobj, FormattersMatchData match_data(valobj, use_dynamic); SyntheticChildrenSP retval; - Log *log(lldb_private::GetLogIfAllCategoriesSet (LIBLLDB_LOG_TYPES)); + Log *log(lldb_private::GetLogIfAllCategoriesSet (LIBLLDB_LOG_DATAFORMATTERS)); if (match_data.GetTypeForCache()) { if (log) @@ -954,7 +954,7 @@ FormatManager::GetValidator (ValueObject& valobj, FormattersMatchData match_data(valobj, use_dynamic); TypeValidatorImplSP retval; - Log *log(lldb_private::GetLogIfAllCategoriesSet (LIBLLDB_LOG_TYPES)); + Log *log(lldb_private::GetLogIfAllCategoriesSet (LIBLLDB_LOG_DATAFORMATTERS)); if (match_data.GetTypeForCache()) { if (log) |