summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoel Fischer <joeljfischer@gmail.com>2017-10-24 14:29:54 +0300
committerJoel Fischer <joeljfischer@gmail.com>2017-10-24 14:29:54 +0300
commitdd9d15d8ebcc38e81c755c014155803a0f89bfe5 (patch)
tree04c4bdcfaa9e055fbdb3ddd17d4229667f1dd5ad
parente87a42cc12c337ffd18f8acc2ca900933514474c (diff)
downloadsdl_ios-bug/issue_773_missing_protocol_string_crash.tar.gz
-rw-r--r--SmartDeviceLink/SDLIAPTransport.m1
1 files changed, 1 insertions, 0 deletions
diff --git a/SmartDeviceLink/SDLIAPTransport.m b/SmartDeviceLink/SDLIAPTransport.m
index 5404fc6ef..83fa35810 100644
--- a/SmartDeviceLink/SDLIAPTransport.m
+++ b/SmartDeviceLink/SDLIAPTransport.m
@@ -255,6 +255,7 @@ int const ProtocolIndexTimeoutSeconds = 20;
BOOL connecting = NO;
if ([self.class sdl_supportsRequiredProtocolStrings] != nil) {
NSString *failedString = [self.class sdl_supportsRequiredProtocolStrings];
+ SDLLogE(@"A required External Accessory protocol string is missing from the info.plist: %@", failedString);
NSAssert(NO, @"Some SDL protocol strings are not supported, check the README for all strings that must be included in your info.plist file. Missing string: %@", failedString);
return connecting;
}