Remove unnecessary log 96/227596/1 submit/tizen/20200316.013847 submit/tizen_5.5/20200316.013922
authorDoHyun Pyun <dh79.pyun@samsung.com>
Fri, 13 Mar 2020 04:52:38 +0000 (13:52 +0900)
committerDoHyun Pyun <dh79.pyun@samsung.com>
Fri, 13 Mar 2020 04:52:38 +0000 (13:52 +0900)
Change-Id: Ia3c927d89f6322e4a9200f6a57de04ff9940c308
Signed-off-by: DoHyun Pyun <dh79.pyun@samsung.com>
bt-api/bt-adapter.c

index 6a0ccb2..36edc67 100644 (file)
@@ -112,7 +112,6 @@ BT_EXPORT_API int bluetooth_enable_adapter(void)
 
 BT_EXPORT_API int bluetooth_set_battery_monitor_state(bool state)
 {
-       BT_INFO("Setting vconf key");
        if (vconf_set_bool(VCONFKEY_BATTERY_MONITOR_STATUS, state) != 0)
        {
                BT_ERR("vconf_set_bool failed");
@@ -124,9 +123,10 @@ BT_EXPORT_API int bluetooth_set_battery_monitor_state(bool state)
 BT_EXPORT_API int bluetooth_get_battery_monitor_state()
 {
        int state = 0;
-       BT_INFO("Getting vconf key value");
+
        if (vconf_get_bool(VCONFKEY_BATTERY_MONITOR_STATUS, &state) != 0)
                BT_ERR("vconf_get_bool failed");
+
        return state;
 }