summaryrefslogtreecommitdiff
path: root/SmartDeviceLink/SDLV2ProtocolMessage.m
diff options
context:
space:
mode:
authorJoel Fischer <joeljfischer@gmail.com>2017-03-03 11:50:40 -0500
committerJoel Fischer <joeljfischer@gmail.com>2017-03-03 11:50:40 -0500
commit4c3f9a1f8e26f2dda6083a28a5c6dda93035f8fb (patch)
tree7e48d8ab0522f36806c9cc81defbd8ee4160842d /SmartDeviceLink/SDLV2ProtocolMessage.m
parent822dabb1d13abcc057c1f5e3615b8546fd63fffd (diff)
downloadsdl_ios-4c3f9a1f8e26f2dda6083a28a5c6dda93035f8fb.tar.gz
Comment out all `SDLDebugTool` calls
Diffstat (limited to 'SmartDeviceLink/SDLV2ProtocolMessage.m')
-rw-r--r--SmartDeviceLink/SDLV2ProtocolMessage.m2
1 files changed, 1 insertions, 1 deletions
diff --git a/SmartDeviceLink/SDLV2ProtocolMessage.m b/SmartDeviceLink/SDLV2ProtocolMessage.m
index f3f09c090..9b62220c6 100644
--- a/SmartDeviceLink/SDLV2ProtocolMessage.m
+++ b/SmartDeviceLink/SDLV2ProtocolMessage.m
@@ -42,7 +42,7 @@ NS_ASSUME_NONNULL_BEGIN
NSError *error = nil;
NSDictionary<NSString *, id> * jsonDictionary = [NSJSONSerialization JSONObjectWithData:rpcPayload.jsonData options:kNilOptions error:&error];
if (error != nil) {
- [SDLDebugTool logInfo:[NSString stringWithFormat:@"Error decoding JSON data: %@", error] withType:SDLDebugType_Protocol];
+ // [SDLDebugTool logInfo:[NSString stringWithFormat:@"Error decoding JSON data: %@", error] withType:SDLDebugType_Protocol];
} else if (jsonDictionary) {
[innerDictionary setObject:jsonDictionary forKey:SDLNameParameters];
}