diff options
| author | Mason Reed <mason@vector35.com> | 2025-04-03 15:43:43 -0400 |
|---|---|---|
| committer | Mason Reed <mason@vector35.com> | 2025-04-03 21:35:42 -0400 |
| commit | 4969468ecb7bfbe12b8e862e4a89010cf37be8fb (patch) | |
| tree | d5eed39c98b8bdab42f95f94d3584d52b51594d4 | |
| parent | 1457e9542f2398a058881f926d9f4d650e2d9f42 (diff) | |
Change warning to info for undetermined base class for objective-c category
More informative than a warning
| -rw-r--r-- | objectivec/objc.cpp | 4 |
1 files 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<Section> 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); } |
