summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNicoleYarroch <nicole@livio.io>2017-10-16 13:13:59 -0400
committerNicoleYarroch <nicole@livio.io>2017-10-16 13:13:59 -0400
commitd7d7e1c12d3f6a9e82159aae44ce2400aa4f8b13 (patch)
treeffdf4efd49e7cc3d0c6b3df9269701204fef0cbe
parentc938af96a6920d7e6e3b0330f8614489287dfa18 (diff)
downloadsdl_ios-d7d7e1c12d3f6a9e82159aae44ce2400aa4f8b13.tar.gz
Removed debug logs
-rw-r--r--SmartDeviceLink/SDLIAPTransport.m5
1 files changed, 1 insertions, 4 deletions
diff --git a/SmartDeviceLink/SDLIAPTransport.m b/SmartDeviceLink/SDLIAPTransport.m
index d1c2f759a..f07a22dfc 100644
--- a/SmartDeviceLink/SDLIAPTransport.m
+++ b/SmartDeviceLink/SDLIAPTransport.m
@@ -331,7 +331,6 @@ int const ProtocolIndexTimeoutSeconds = 20;
};
self.protocolIndexTimer.elapsedBlock = elapsedBlock;
- SDLLogD(@"Setting delegates for control stream");
SDLStreamDelegate *controlStreamDelegate = [[SDLStreamDelegate alloc] init];
controlStreamDelegate.streamHasBytesHandler = [self sdl_controlStreamHasBytesHandlerForAccessory:accessory];
controlStreamDelegate.streamEndHandler = [self sdl_controlStreamEndedHandler];
@@ -339,7 +338,7 @@ int const ProtocolIndexTimeoutSeconds = 20;
self.controlSession.streamDelegate = controlStreamDelegate;
if (![self.controlSession start]) {
- SDLLogW(@"Control session failed to setup");
+ SDLLogW(@"Control session failed to setup (%@)", accessory);
self.controlSession.streamDelegate = nil;
self.controlSession = nil;
[self sdl_retryEstablishSession];
@@ -460,7 +459,6 @@ int const ProtocolIndexTimeoutSeconds = 20;
uint8_t buf[1];
NSUInteger len = [istream read:buf maxLength:1];
if (len <= 0) {
- SDLLogV(@"Nothing read from input stream");
return;
}
@@ -622,4 +620,3 @@ int const ProtocolIndexTimeoutSeconds = 20;
@end
NS_ASSUME_NONNULL_END
-