diff options
author | NicoleYarroch <nicole@livio.io> | 2020-04-08 13:14:36 -0400 |
---|---|---|
committer | NicoleYarroch <nicole@livio.io> | 2020-04-08 13:14:36 -0400 |
commit | 94e8660b1ff662b8739df92c0bccef5050139c98 (patch) | |
tree | 308312367b97784b35c192b74e12a0c795820167 /SmartDeviceLink/SDLSecondaryTransportManager.m | |
parent | 264b6b4f13aeb42b07b9b4a6698c70da6310f00c (diff) | |
download | sdl_ios-94e8660b1ff662b8739df92c0bccef5050139c98.tar.gz |
Background task destroyed correctly
The secondary transport background task is now only destroyed after cleanup finishes
Diffstat (limited to 'SmartDeviceLink/SDLSecondaryTransportManager.m')
-rw-r--r-- | SmartDeviceLink/SDLSecondaryTransportManager.m | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/SmartDeviceLink/SDLSecondaryTransportManager.m b/SmartDeviceLink/SDLSecondaryTransportManager.m index 7104c1754..9f996522d 100644 --- a/SmartDeviceLink/SDLSecondaryTransportManager.m +++ b/SmartDeviceLink/SDLSecondaryTransportManager.m @@ -703,7 +703,7 @@ struct TransportProtocolUpdated { [strongSelf.backgroundTaskManager endBackgroundTask]; [strongSelf.stateMachine transitionToState:SDLSecondaryTransportStateConnecting]; } else { - SDLLogD(@"TCP transport not ready to start, our current state is: %@, strongSelf.stateMachine.currentState"); + SDLLogD(@"TCP transport not ready to start, our current state is: %@", strongSelf.stateMachine.currentState); } } }); |