Guest User

Untitled

a guest
May 24th, 2016
63
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.63 KB | None | 0 0
  1. Hardware Model: iPhone5,2
  2. Exception Type: 00000020
  3. Exception Codes: 0x000000008badf00d
  4. Highlighted Thread: 3
  5.  
  6. Application Specific Information:
  7. MyApp[1369] has active assertions beyond permitted time:
  8. {(
  9. <BKProcessAssertion: 0x175ca7d0> identifier: Called by MyApp, from -[AppDelegate applicationDidEnterBackground:] process: MyApp[1369] permittedBackgroundDuration: 180.000000 reason: finishTask owner pid:1369 preventSuspend preventIdleSleep preventSuspendOnSleep
  10. )}
  11.  
  12. Thread 3 name: com.apple.NSURLConnectionLoader
  13. Thread 3:
  14. 0 libsystem_kernel.dylib 0x3937ea50 mach_msg_trap + 20
  15. 1 libsystem_kernel.dylib 0x3937e848 mach_msg + 36
  16. 2 CoreFoundation 0x2e61261c __CFRunLoopServiceMachPort + 152
  17. 3 CoreFoundation 0x2e610d3c __CFRunLoopRun + 788
  18. 4 CoreFoundation 0x2e57b7a4 CFRunLoopRunSpecific + 520
  19. 5 CoreFoundation 0x2e57b586 CFRunLoopRunInMode + 102
  20. 6 Foundation 0x2efbb23c +[NSURLConnection(Loader) _resourceLoadLoop:] + 316
  21. 7 Foundation 0x2f030a0a __NSThread__main__ + 1058
  22. 8 libsystem_pthread.dylib 0x393f8956 _pthread_body + 138
  23. 9 libsystem_pthread.dylib 0x393f88c6 _pthread_start + 98
  24. 10 libsystem_pthread.dylib 0x393f6ae4 thread_start + 4
  25.  
  26. // 10min background task
  27. UIBackgroundTaskIdentifier myLongTask;
  28. myLongTask = [[UIApplication sharedApplication]
  29. beginBackgroundTaskWithExpirationHandler:^{
  30. [locationMgrInstance timerSet];
  31. }];
  32. // cell change
  33. [locationMgrInstance startMonitoringSignificantLocationChanges];
Add Comment
Please, Sign In to add comment