summaryrefslogtreecommitdiff
path: root/SmartDeviceLink_Example/Classes
diff options
context:
space:
mode:
authorJoel Fischer <joeljfischer@gmail.com>2017-03-14 16:24:08 -0400
committerJoel Fischer <joeljfischer@gmail.com>2017-03-14 16:24:08 -0400
commit71bc993268a524ecf7dcc4e6973447484c900376 (patch)
tree0d5fd38cb4f87fbbab32e3fa6fb59f4af2574d53 /SmartDeviceLink_Example/Classes
parent3650696cd092f90ca29530ee733b735e4c8ec059 (diff)
downloadsdl_ios-71bc993268a524ecf7dcc4e6973447484c900376.tar.gz
Targets are now hashable
* [Example App] Fix debug log configuration * Fix SDLLog.swift not found * Fix SDLLog.swift functions not compiling * Comments on logging stuff
Diffstat (limited to 'SmartDeviceLink_Example/Classes')
-rw-r--r--SmartDeviceLink_Example/Classes/ProxyManager.m2
1 files changed, 1 insertions, 1 deletions
diff --git a/SmartDeviceLink_Example/Classes/ProxyManager.m b/SmartDeviceLink_Example/Classes/ProxyManager.m
index 61462c60e..149d4fab1 100644
--- a/SmartDeviceLink_Example/Classes/ProxyManager.m
+++ b/SmartDeviceLink_Example/Classes/ProxyManager.m
@@ -81,7 +81,7 @@ NS_ASSUME_NONNULL_BEGIN
- (void)startTCP {
[self sdlex_updateProxyState:ProxyStateSearchingForConnection];
SDLLifecycleConfiguration *lifecycleConfig = [self.class sdlex_setLifecycleConfigurationPropertiesOnConfiguration:[SDLLifecycleConfiguration debugConfigurationWithAppName:SDLAppName appId:SDLAppId ipAddress:[Preferences sharedPreferences].ipAddress port:[Preferences sharedPreferences].port]];
- SDLConfiguration *config = [SDLConfiguration configurationWithLifecycle:lifecycleConfig lockScreen:[SDLLockScreenConfiguration enabledConfiguration] logging:[SDLLogConfiguration debugConfiguration]];
+ SDLConfiguration *config = [SDLConfiguration configurationWithLifecycle:lifecycleConfig lockScreen:[SDLLockScreenConfiguration enabledConfiguration] logging:[self.class sdlex_logConfiguration]];
self.sdlManager = [[SDLManager alloc] initWithConfiguration:config delegate:self];
[self startManager];