From 4969468ecb7bfbe12b8e862e4a89010cf37be8fb Mon Sep 17 00:00:00 2001 From: Mason Reed Date: Thu, 3 Apr 2025 15:43:43 -0400 Subject: Change warning to info for undetermined base class for objective-c category More informative than a warning --- objectivec/objc.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/objectivec/objc.cpp b/objectivec/objc.cpp index 2fa6fb0d..6f9c3cde 100644 --- a/objectivec/objc.cpp +++ b/objectivec/objc.cpp @@ -598,8 +598,8 @@ void ObjCProcessor::LoadCategories(ObjCReader* reader, Ref
classPtrSect } if (categoryBaseClassName.empty()) { - m_logger->LogWarn( - "Failed to determine base classname for category at 0x%llx. Using base address as stand-in classname", + m_logger->LogInfo( + "[SharedCache.ObjC] Using base address as stand-in classname for category at 0x%llx", catLocation); categoryBaseClassName = std::to_string(catLocation); } -- cgit v1.3.1