summaryrefslogtreecommitdiff
path: root/SmartDeviceLink/SDLPolicyDataParser.m
diff options
context:
space:
mode:
authorMuller, Alexander (A.) <amulle19@ford.com>2016-09-01 11:10:10 -0700
committerMuller, Alexander (A.) <amulle19@ford.com>2016-09-01 11:10:10 -0700
commita969d7ed3dd82766ce332bcc89df0f816dac7bd8 (patch)
tree4efbd0c7a66a89453910ea88befe7c2450ed7628 /SmartDeviceLink/SDLPolicyDataParser.m
parentc4b51d2e28e57b32d131e5e44204e83b496ead9e (diff)
downloadsdl_ios-a969d7ed3dd82766ce332bcc89df0f816dac7bd8.tar.gz
Removed all usages of NSLog for consistent use of SDLDebugTool.
Diffstat (limited to 'SmartDeviceLink/SDLPolicyDataParser.m')
-rw-r--r--SmartDeviceLink/SDLPolicyDataParser.m6
1 files changed, 3 insertions, 3 deletions
diff --git a/SmartDeviceLink/SDLPolicyDataParser.m b/SmartDeviceLink/SDLPolicyDataParser.m
index e528e4bd4..92b1e1580 100644
--- a/SmartDeviceLink/SDLPolicyDataParser.m
+++ b/SmartDeviceLink/SDLPolicyDataParser.m
@@ -3,7 +3,7 @@
//
#import "SDLPolicyDataParser.h"
-
+#import "SDLDebugTool.h"
@implementation SDLPolicyDataParser
@@ -27,7 +27,7 @@
}
@catch (NSException *exception) {
decodedData = nil;
- NSLog(@"Error in PolicyDataParser::unwrap()");
+ [SDLDebugTool logInfo:@"Error in PolicyDataParser::unwrap()"];
}
return decodedData;
@@ -110,7 +110,7 @@
}
@catch (NSException *exception) {
- NSLog(@"Error in PolicyDataParser::parsePolicyData()");
+ [SDLDebugTool logInfo:@"Error in PolicyDataParser::parsePolicyData()"];
}
}