summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNicoleYarroch <nicole@livio.io>2020-04-14 15:17:58 -0400
committerNicoleYarroch <nicole@livio.io>2020-04-14 15:17:58 -0400
commitdfc60a21093a83cbef173cfb1d58a5c136b724ad (patch)
tree2c2afaf88ecaa883a1c1ec6bd5feea90a70b9ae0
parente98a0e6c7c2745d076dc384d34ce59f888277303 (diff)
parent4723f2e5db10e8ee5a4a3c8c549c5b2982d44029 (diff)
downloadsdl_ios-dfc60a21093a83cbef173cfb1d58a5c136b724ad.tar.gz
Merge branch 'bugfix/issue_1560_delay_shutting_down_secondary_transport' of https://github.com/smartdevicelink/sdl_ios into bugfix/issue_1560_delay_shutting_down_secondary_transport
-rw-r--r--SmartDeviceLink/SDLBackgroundTaskManager.m2
1 files changed, 1 insertions, 1 deletions
diff --git a/SmartDeviceLink/SDLBackgroundTaskManager.m b/SmartDeviceLink/SDLBackgroundTaskManager.m
index 5c5a0f358..1bad42641 100644
--- a/SmartDeviceLink/SDLBackgroundTaskManager.m
+++ b/SmartDeviceLink/SDLBackgroundTaskManager.m
@@ -49,7 +49,7 @@ NS_ASSUME_NONNULL_BEGIN
SDLLogD(@"Checking if subscriber wants to to perform some cleanup before ending the background task %@", strongSelf.backgroundTaskName);
BOOL waitForCleanupToFinish = strongSelf.taskExpiringHandler();
if (waitForCleanupToFinish) {
- SDLLogD(@"Subscriber wants to clean up before ending the background task %@. Waiting...", self.backgroundTaskName);
+ SDLLogD(@"The subscriber will end background task itself %@. Waiting...", self.backgroundTaskName);
} else {
SDLLogV(@"Subscriber does not want to perform cleanup. Ending the background task %@", strongSelf.backgroundTaskName);
[strongSelf endBackgroundTask];