summaryrefslogtreecommitdiff
path: root/objectivec
diff options
context:
space:
mode:
authorMason Reed <mason@vector35.com>2025-05-09 21:03:03 -0400
committerMason Reed <mason@vector35.com>2025-05-09 21:05:50 -0400
commit530463095c688c88386be4444886ede4a625afa8 (patch)
treeeb66ed33d3261c235bf1edf18e6961c7c3df70e2 /objectivec
parent79ef475f51d21d83dcc5a6e3e5b6b40cac616cc7 (diff)
[ObjC] Remove shared cache prefix on a log call
Diffstat (limited to 'objectivec')
-rw-r--r--objectivec/objc.cpp4
1 files changed, 1 insertions, 3 deletions
diff --git a/objectivec/objc.cpp b/objectivec/objc.cpp
index acfdbe53..bee595bc 100644
--- a/objectivec/objc.cpp
+++ b/objectivec/objc.cpp
@@ -599,9 +599,7 @@ void ObjCProcessor::LoadCategories(ObjCReader* reader, Ref<Section> classPtrSect
}
if (categoryBaseClassName.empty())
{
- m_logger->LogInfo(
- "[SharedCache.ObjC] Using base address as stand-in classname for category at 0x%llx",
- catLocation);
+ m_logger->LogInfo("Using base address as stand-in classname for category at 0x%llx", catLocation);
categoryBaseClassName = fmt::format("{:x}", catLocation);
}
try