diff --git a/ChangeLog b/ChangeLog index 86cd75f47..589ccf91c 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +2011-01-07 Richard Frith-Macdonald + + * Source/NSObject.m: Make zombie log message match current OSX. + 2011-01-06 Fred Kiefer * Source/NSObject.m (GSAtomicIncrement, GSAtomicDecrement): MIPS64 diff --git a/Source/NSObject.m b/Source/NSObject.m index 617af9d87..272c389ed 100644 --- a/Source/NSObject.m +++ b/Source/NSObject.m @@ -156,13 +156,13 @@ static void GSLogZombie(id o, SEL sel) } if (c == 0) { - NSLog(@"Deallocated object (%p) sent %@", - o, NSStringFromSelector(sel)); + NSLog(@"*** -[??? %@]: message sent to deallocated instance %p", + NSStringFromSelector(sel), o); } else { - NSLog(@"Deallocated %@ (%p) sent %@", - c, o, NSStringFromSelector(sel)); + NSLog(@"*** -[%@ %@]: message sent to deallocated instance %p", + c, NSStringFromSelector(sel), o); } if (GSPrivateEnvironmentFlag("CRASH_ON_ZOMBIE", NO) == YES) {