When the code was converted from MRC to ARC, the keys that were used in initWithCoder from LoggerConnection have changed. That was causing older .nsloggerdata exported by older NSLogger versions to not be compatible with the newer version.
The fix is to fallback on older keys if the new keys return nil.
When the code was converted from MRC to ARC, the keys that were used in
initWithCoder
fromLoggerConnection
have changed. That was causing older.nsloggerdata
exported by older NSLogger versions to not be compatible with the newer version.The fix is to fallback on older keys if the new keys return
nil
.