Cleanup unnecessary logs

Bug: 27698756
Change-Id: I30b5e4b45d4b06e0264415e85949c7bf828f28c0
diff --git a/bta/hh/bta_hh_le.c b/bta/hh/bta_hh_le.c
index 88d1508..ce14119 100644
--- a/bta/hh/bta_hh_le.c
+++ b/bta/hh/bta_hh_le.c
@@ -1116,10 +1116,9 @@
 {
     UNUSED(p_buf);
 
-    APPL_TRACE_ERROR("%s: *****************************************************************************************************", __func__);
+    APPL_TRACE_DEBUG("%s", __func__);
     if (p_cb->status == BTA_HH_OK)
     {
-        APPL_TRACE_ERROR("%s: OK", __func__);
         if (!p_cb->hid_srvc.in_use)
         {
             APPL_TRACE_DEBUG("bta_hh_security_cmpl no reports loaded, try to load");
@@ -1136,18 +1135,17 @@
         /*  discovery has been done for HID service */
         if (p_cb->app_id != 0 && p_cb->hid_srvc.in_use)
         {
-            APPL_TRACE_ERROR("%s: discovery has been done for HID service", __func__);
+            APPL_TRACE_DEBUG("%s: discovery has been done for HID service", __func__);
             /* configure protocol mode */
             if (bta_hh_le_set_protocol_mode(p_cb, p_cb->mode) == FALSE)
             {
-                APPL_TRACE_ERROR("bta_hh_security_cmpl");
                 bta_hh_le_open_cmpl(p_cb);
             }
         }
         /* start primary service discovery for HID service */
         else
         {
-            APPL_TRACE_ERROR("%s: Starting service discovery", __func__);
+            APPL_TRACE_DEBUG("%s: Starting service discovery", __func__);
             bta_hh_le_pri_service_discovery(p_cb);
         }
     }