diff options
| author | Joel Fischer <joeljfischer@gmail.com> | 2017-03-14 16:24:08 -0400 |
|---|---|---|
| committer | Joel Fischer <joeljfischer@gmail.com> | 2017-03-14 16:24:08 -0400 |
| commit | 71bc993268a524ecf7dcc4e6973447484c900376 (patch) | |
| tree | 0d5fd38cb4f87fbbab32e3fa6fb59f4af2574d53 /SmartDeviceLink_Example/Classes | |
| parent | 3650696cd092f90ca29530ee733b735e4c8ec059 (diff) | |
| download | sdl_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.m | 2 |
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]; |
