wlan: Reduce logging level that can cause crash

Fixes the excessive logging due to trace level VOS_TRACE_LEVEL_ERROR
in function hdd_hostapd_select_queue

Change-Id: I4c04b6d9936df0deda1dba1a9377b541b0e9e83f
CR-Fixed: 414347
diff --git a/CORE/HDD/src/wlan_hdd_wmm.c b/CORE/HDD/src/wlan_hdd_wmm.c
index faaf4c0..46fbb7c 100644
--- a/CORE/HDD/src/wlan_hdd_wmm.c
+++ b/CORE/HDD/src/wlan_hdd_wmm.c
@@ -1750,7 +1750,7 @@
 #ifdef FEATURE_WLAN_NON_INTEGRATED_SOC
    if (eHAL_STATUS_SUCCESS != halTable_FindStaidByAddr(pMac, (tANI_U8 *)pDestMacAddress, &STAId))
    {
-      VOS_TRACE( VOS_MODULE_ID_HDD_SOFTAP, VOS_TRACE_LEVEL_ERROR,
+      VOS_TRACE( VOS_MODULE_ID_HDD_SOFTAP, VOS_TRACE_LEVEL_INFO,
             "%s: Failed to find right station", __FUNCTION__);
       *pSTAId = HDD_WLAN_INVALID_STA_ID;
       goto done;
@@ -1758,7 +1758,7 @@
 #else
    if (VOS_STATUS_SUCCESS != hdd_softap_GetStaId(pAdapter, pDestMacAddress, &STAId))
    {
-      VOS_TRACE( VOS_MODULE_ID_HDD_SOFTAP, VOS_TRACE_LEVEL_ERROR,
+      VOS_TRACE( VOS_MODULE_ID_HDD_SOFTAP, VOS_TRACE_LEVEL_INFO,
             "%s: Failed to find right station", __FUNCTION__);
       *pSTAId = HDD_WLAN_INVALID_STA_ID;
       goto done;