diff options
| author | Mason Reed <mason@vector35.com> | 2025-04-01 01:03:56 -0400 |
|---|---|---|
| committer | Mason Reed <mason@vector35.com> | 2025-04-02 05:36:54 -0400 |
| commit | e1b164fa2bd10d5662c65ed930416d2f911c12e1 (patch) | |
| tree | 52edee3d42e0f414b4553145b523b3345f2665a4 /objectivec | |
| parent | 7d8fab3ca667ea727becce31ce605d932c8784ed (diff) | |
[SharedCache] Fix some bugs
Diffstat (limited to 'objectivec')
| -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 68956a2c..9a12e0fc 100644 --- a/objectivec/objc.cpp +++ b/objectivec/objc.cpp @@ -592,7 +592,7 @@ void ObjCProcessor::LoadCategories(ObjCReader* reader, Ref<Section> classPtrSect } if (categoryBaseClassName.empty()) { - m_logger->LogError( + m_logger->LogWarn( "Failed to determine base classname for category at 0x%llx. Using base address as stand-in classname", catLocation); categoryBaseClassName = std::to_string(catLocation); @@ -604,7 +604,7 @@ void ObjCProcessor::LoadCategories(ObjCReader* reader, Ref<Section> classPtrSect } catch (...) { - m_logger->LogError( + m_logger->LogWarn( "Failed to read category name for category at 0x%llx. Using base address as stand-in category name", catLocation); categoryAdditionsName = std::to_string(catLocation); |
