Skip to content

Commit 5304630

Browse files
committed
[ObjC] Remove shared cache prefix on a log call
1 parent 79ef475 commit 5304630

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

objectivec/objc.cpp

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -599,9 +599,7 @@ void ObjCProcessor::LoadCategories(ObjCReader* reader, Ref<Section> classPtrSect
599599
}
600600
if (categoryBaseClassName.empty())
601601
{
602-
m_logger->LogInfo(
603-
"[SharedCache.ObjC] Using base address as stand-in classname for category at 0x%llx",
604-
catLocation);
602+
m_logger->LogInfo("Using base address as stand-in classname for category at 0x%llx", catLocation);
605603
categoryBaseClassName = fmt::format("{:x}", catLocation);
606604
}
607605
try

0 commit comments

Comments
 (0)