summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoel Fischer <joeljfischer@gmail.com>2018-05-30 09:58:49 -0400
committerJoel Fischer <joeljfischer@gmail.com>2018-05-30 09:58:49 -0400
commit513d31083fdc092edf863d69cf9d08990575479a (patch)
treefe912cbbad45a83ea41c072c3cbe9dcbe7a3c579
parentcaadfdc9285290c52e4f07347afb379b6378cda0 (diff)
downloadsdl_ios-513d31083fdc092edf863d69cf9d08990575479a.tar.gz
Change log level of example app
-rw-r--r--SmartDeviceLink/SDLLifecycleManager.m2
-rw-r--r--SmartDeviceLink_Example/Classes/ProxyManager.m2
2 files changed, 2 insertions, 2 deletions
diff --git a/SmartDeviceLink/SDLLifecycleManager.m b/SmartDeviceLink/SDLLifecycleManager.m
index 58cc78e1e..f82e6cc8b 100644
--- a/SmartDeviceLink/SDLLifecycleManager.m
+++ b/SmartDeviceLink/SDLLifecycleManager.m
@@ -663,7 +663,7 @@ SDLLifecycleState *const SDLLifecycleStateReady = @"Ready";
}
SDLOnAppInterfaceUnregistered *appUnregisteredNotification = notification.notification;
- SDLLogW(@"Remote Device forced unregistration for reason: %@", appUnregisteredNotification.reason);
+ SDLLogE(@"Remote Device forced unregistration for reason: %@", appUnregisteredNotification.reason);
if ([self.lifecycleStateMachine isCurrentState:SDLLifecycleStateUnregistering]) {
[self.lifecycleStateMachine transitionToState:SDLLifecycleStateStopped];
diff --git a/SmartDeviceLink_Example/Classes/ProxyManager.m b/SmartDeviceLink_Example/Classes/ProxyManager.m
index bb2ba88c3..c075b5191 100644
--- a/SmartDeviceLink_Example/Classes/ProxyManager.m
+++ b/SmartDeviceLink_Example/Classes/ProxyManager.m
@@ -135,7 +135,7 @@ NS_ASSUME_NONNULL_BEGIN
SDLLogFileModule *sdlExampleModule = [SDLLogFileModule moduleWithName:@"SDL Obj-C Example App" files:[NSSet setWithArray:@[@"ProxyManager", @"AlertManager", @"AudioManager", @"ButtonManager", @"MenuManager", @"PerformInteractionManager", @"RPCPermissionsManager", @"VehicleDataManager"]]];
logConfig.modules = [logConfig.modules setByAddingObject:sdlExampleModule];
logConfig.targets = [logConfig.targets setByAddingObject:[SDLLogTargetFile logger]];
- logConfig.globalLogLevel = SDLLogLevelVerbose;
+ logConfig.globalLogLevel = SDLLogLevelDebug;
return logConfig;
}