summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNicoleYarroch <nicole@livio.io>2020-04-08 07:49:28 -0400
committerNicoleYarroch <nicole@livio.io>2020-04-08 07:49:28 -0400
commit264b6b4f13aeb42b07b9b4a6698c70da6310f00c (patch)
treedf404688c83a8fcceceb0a47b05badce72e0fd3d
parentadccb55b2b9b87b2e56c0fdb7000480cf9622499 (diff)
downloadsdl_ios-264b6b4f13aeb42b07b9b4a6698c70da6310f00c.tar.gz
Fixed debug log level
-rw-r--r--SmartDeviceLink/SDLSecondaryTransportManager.m4
1 files changed, 2 insertions, 2 deletions
diff --git a/SmartDeviceLink/SDLSecondaryTransportManager.m b/SmartDeviceLink/SDLSecondaryTransportManager.m
index 28d318a42..7104c1754 100644
--- a/SmartDeviceLink/SDLSecondaryTransportManager.m
+++ b/SmartDeviceLink/SDLSecondaryTransportManager.m
@@ -716,9 +716,9 @@ struct TransportProtocolUpdated {
return ^{
__strong typeof(self) strongSelf = weakSelf;
if (strongSelf.sdl_getAppState == UIApplicationStateActive) {
- SDLLogD(@"App has been foregrounded. Ignoring notification that the background task ended.");
+ SDLLogV(@"App has been foregrounded. Ignoring notification that the background task ended.");
} else if ([strongSelf.stateMachine isCurrentState:SDLSecondaryTransportStateStopped]) {
- SDLLogD(@"Manager has been stopped. Ignoring notification that the background task ended.");
+ SDLLogV(@"Manager has been stopped. Ignoring notification that the background task ended.");
} else {
SDLLogD(@"Disconnecting TCP transport due to the background task ending.");
[strongSelf.stateMachine transitionToState:SDLSecondaryTransportStateConfigured];