summaryrefslogtreecommitdiff
path: root/qcwcn
diff options
context:
space:
mode:
authormukesh agrawal <quiche@google.com>2016-04-12 17:36:38 -0700
committerMukesh Agrawal <quiche@google.com>2016-04-14 18:31:09 +0000
commita58ccfb90f6608d378d04ee655113620afdf00bc (patch)
tree501f9531d236a5ce31e25229f2fc3c5637b45e5e /qcwcn
parentb5841f6c19ec690b1fb032a0aee63d5300b19ce4 (diff)
downloadwlan-a58ccfb90f6608d378d04ee655113620afdf00bc.tar.gz
Wifi-HAL: demote some messages from ERROR to VERBOSE
Originally part of https://partner-android-review.googlesource.com/#/c/558740 BUG=27698661 TEST=compile Change-Id: I97aa34497cfc749190f459c7e8bc6d5f6c93b98b
Diffstat (limited to 'qcwcn')
-rw-r--r--qcwcn/wifi_hal/gscan.cpp10
-rw-r--r--qcwcn/wifi_hal/gscan_event_handler.cpp4
-rw-r--r--qcwcn/wifi_hal/nan_req.cpp2
3 files changed, 8 insertions, 8 deletions
diff --git a/qcwcn/wifi_hal/gscan.cpp b/qcwcn/wifi_hal/gscan.cpp
index b6471d8..1c103bc 100644
--- a/qcwcn/wifi_hal/gscan.cpp
+++ b/qcwcn/wifi_hal/gscan.cpp
@@ -1541,7 +1541,7 @@ int GScanCommand::handleResponse(WifiEvent &reply) {
);
/* If this is not for us, just ignore it. */
if (id != mRequestId) {
- ALOGE("%s: Event has Req. ID:%d <> ours:%d",
+ ALOGV("%s: Event has Req. ID:%d <> ours:%d",
__FUNCTION__, id, mRequestId);
break;
}
@@ -1559,7 +1559,7 @@ int GScanCommand::handleResponse(WifiEvent &reply) {
*/
numResults = nla_get_u32(tbVendor[
QCA_WLAN_VENDOR_ATTR_GSCAN_RESULTS_NUM_RESULTS_AVAILABLE]);
- ALOGE("%s: num Cached results in this fragment:%d",
+ ALOGV("%s: num Cached results in this fragment:%d",
__FUNCTION__, numResults);
if (!mGetCachedResultsRspParams) {
@@ -1599,7 +1599,7 @@ int GScanCommand::handleResponse(WifiEvent &reply) {
firstScanIdInPatch = nla_get_u32(tbVendor[
QCA_WLAN_VENDOR_ATTR_GSCAN_CACHED_RESULTS_SCAN_ID]);
- ALOGE("More data: %d, firstScanIdInPatch: %d, lastProcessedScanId: %d",
+ ALOGV("More data: %d, firstScanIdInPatch: %d, lastProcessedScanId: %d",
mGetCachedResultsRspParams->more_data, firstScanIdInPatch,
mGetCachedResultsRspParams->lastProcessedScanId);
@@ -1817,7 +1817,7 @@ int GScanCommand:: gscan_get_cached_results(
int rem = 0, remResults = 0;
u32 len = 0, numScanResults = 0;
u32 i = mGetCachedResultsRspParams->cachedResultsStartingIndex;
- ALOGE("%s: starting counter: %d", __FUNCTION__, i);
+ ALOGV("%s: starting counter: %d", __FUNCTION__, i);
for (scanResultsInfo = (struct nlattr *) nla_data(tb_vendor[
QCA_WLAN_VENDOR_ATTR_GSCAN_CACHED_RESULTS_LIST]),
@@ -2072,7 +2072,7 @@ int GScanCommand:: gscan_get_cached_results(
j, MAX_AP_CACHE_PER_SCAN, i);
}
}
- ALOGE("%s: cached_results[%d].num_results: %d ", __FUNCTION__,
+ ALOGV("%s: cached_results[%d].num_results: %d ", __FUNCTION__,
i, cached_results[i].num_results);
/* Increment loop index for next cached scan result record */
i++;
diff --git a/qcwcn/wifi_hal/gscan_event_handler.cpp b/qcwcn/wifi_hal/gscan_event_handler.cpp
index c9fe315..591cf55 100644
--- a/qcwcn/wifi_hal/gscan_event_handler.cpp
+++ b/qcwcn/wifi_hal/gscan_event_handler.cpp
@@ -227,7 +227,7 @@ wifi_error GScanCommandEventHandler::gscan_parse_hotlist_ap_results(
struct nlattr *scanResultsInfo;
int rem = 0;
u32 len = 0;
- ALOGE("gscan_parse_hotlist_ap_results: starting counter: %d", i);
+ ALOGV("gscan_parse_hotlist_ap_results: starting counter: %d", i);
for (scanResultsInfo = (struct nlattr *) nla_data(tb_vendor[
QCA_WLAN_VENDOR_ATTR_GSCAN_RESULTS_LIST]),
@@ -1531,7 +1531,7 @@ int GScanCommandEventHandler::handleEvent(WifiEvent &event)
mHotlistApLostMoreData = nla_get_u8(
tbVendor[
QCA_WLAN_VENDOR_ATTR_GSCAN_RESULTS_SCAN_RESULT_MORE_DATA]);
- ALOGE("%s: More data = %d. \n",
+ ALOGV("%s: More data = %d. \n",
__FUNCTION__, mHotlistApLostMoreData);
}
diff --git a/qcwcn/wifi_hal/nan_req.cpp b/qcwcn/wifi_hal/nan_req.cpp
index 20c6069..854e905 100644
--- a/qcwcn/wifi_hal/nan_req.cpp
+++ b/qcwcn/wifi_hal/nan_req.cpp
@@ -998,7 +998,7 @@ int NanCommand::requestEvent()
}
/* send message */
- ALOGE("%s:Handle:%p Socket Value:%p", __func__, mInfo, mInfo->cmd_sock);
+ ALOGV("%s:Handle:%p Socket Value:%p", __func__, mInfo, mInfo->cmd_sock);
res = nl_send_auto_complete(mInfo->cmd_sock, mMsg.getMessage());
if (res < 0)
goto out;