Skip to content

Commit fd55e0d

Browse files
authored
Merge pull request #3772 from apple/lldb-Change-ReconstructType-positive-cache-hits-logging-to-verbose-20211026
[lldb] Change ReconstructType positive cache hits logging to verbose
2 parents 2e2349a + 72f5d34 commit fd55e0d

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

lldb/source/Plugins/TypeSystem/Swift/SwiftASTContext.cpp

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4430,8 +4430,9 @@ swift::TypeBase *SwiftASTContext::ReconstructType(ConstString mangled_typename,
44304430
llvm::PrettyStackTraceFormat PST("error finding type for %s", mangled_cstr);
44314431
swift::TypeBase *found_type = m_mangled_name_to_type_map.lookup(mangled_cstr);
44324432
if (found_type) {
4433-
LOG_PRINTF(LIBLLDB_LOG_TYPES, "(\"%s\") -- found in the positive cache",
4434-
mangled_cstr);
4433+
LOG_VERBOSE_PRINTF(LIBLLDB_LOG_TYPES,
4434+
"(\"%s\") -- found in the positive cache",
4435+
mangled_cstr);
44354436
assert(&found_type->getASTContext() == ast_ctx);
44364437
return found_type;
44374438
}

0 commit comments

Comments
 (0)