From 0c181d598f02d7a36aeeb2444dec075fad0d9771 Mon Sep 17 00:00:00 2001 From: Gautier Pelloux-Prayer Date: Mon, 3 Nov 2014 15:34:38 +0100 Subject: [PATCH] Use Debug level for battery level log info --- Classes/PhoneMainView.m | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Classes/PhoneMainView.m b/Classes/PhoneMainView.m index 643cd085d..ac3a8415f 100644 --- a/Classes/PhoneMainView.m +++ b/Classes/PhoneMainView.m @@ -708,7 +708,7 @@ static RootViewManager* rootViewManagerInstance = nil; - (void)batteryLevelChanged:(NSNotification*)notif { float level = [UIDevice currentDevice].batteryLevel; UIDeviceBatteryState state = [UIDevice currentDevice].batteryState; - [LinphoneLogger log:LinphoneLoggerLog format:@"Battery state:%d level:%.2f", state, level]; + [LinphoneLogger log:LinphoneLoggerDebug format:@"Battery state:%d level:%.2f", state, level]; LinphoneCall* call = linphone_core_get_current_call([LinphoneManager getLc]); if (call && linphone_call_params_video_enabled(linphone_call_get_current_params(call))) {