summaryrefslogtreecommitdiff
path: root/qcwcn/wifi_hal/gscan_event_handler.cpp
diff options
context:
space:
mode:
authorAmarnath Hullur Subramanyam <amarnath@codeaurora.org>2015-07-30 19:33:53 -0700
committerVineeta Srivastava <vsrivastava@google.com>2015-08-03 10:48:01 -0700
commit5946d9d7ee49ff875075fa55eaa32c62841a6ed3 (patch)
tree85a358dc8aac8171c86156a4f8249b6813f419db /qcwcn/wifi_hal/gscan_event_handler.cpp
parent864f2a6901fe97d268d44c053b9fede65a821c51 (diff)
downloadwlan-5946d9d7ee49ff875075fa55eaa32c62841a6ed3.tar.gz
WiFi-HAL: Reducing the log prints in case of gscan
In case of report_event being 2 each scan result is forwarded resulting in lot of logs, reducing the logs for the same. Change-Id: I0002939e529fb1eb9bc03895efd3bc4d3fcb64c6
Diffstat (limited to 'qcwcn/wifi_hal/gscan_event_handler.cpp')
-rw-r--r--qcwcn/wifi_hal/gscan_event_handler.cpp5
1 files changed, 4 insertions, 1 deletions
diff --git a/qcwcn/wifi_hal/gscan_event_handler.cpp b/qcwcn/wifi_hal/gscan_event_handler.cpp
index f2f9636..87e336e 100644
--- a/qcwcn/wifi_hal/gscan_event_handler.cpp
+++ b/qcwcn/wifi_hal/gscan_event_handler.cpp
@@ -1098,9 +1098,10 @@ int GScanCommandEventHandler::handleEvent(WifiEvent &event)
u32 resultsBufSize = 0;
u32 lengthOfInfoElements = 0;
+#ifdef QC_HAL_DEBUG
ALOGD("Event QCA_NL80211_VENDOR_SUBCMD_GSCAN_FULL_SCAN_RESULT "
"received.");
-
+#endif
if (!tbVendor[
QCA_WLAN_VENDOR_ATTR_GSCAN_RESULTS_REQUEST_ID])
{
@@ -1116,8 +1117,10 @@ int GScanCommandEventHandler::handleEvent(WifiEvent &event)
* request_id value which we're maintaining.
*/
if (reqId != mRequestId) {
+#ifdef QC_HAL_DEBUG
ALOGE("%s: Event has Req. ID:%d <> Ours:%d, continue...",
__FUNCTION__, reqId, mRequestId);
+#endif
reqId = mRequestId;
}