summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSreenath Sharma <sreenath.sharma@broadcom.com>2016-04-27 16:50:50 +0530
committerMukesh Agrawal <quiche@google.com>2016-05-02 22:07:59 +0000
commit1c8586503c74fd8bebb5e8b83beed989c33613ee (patch)
treef19a71da30ad92e91154912dd539fe1bddec15fa
parent6050c21f1728fb127370c30bfe36b356917d003a (diff)
downloadwlan-1c8586503c74fd8bebb5e8b83beed989c33613ee.tar.gz
WiFi HAL: GSCAN log spam fix
Changing full scan result printing log level to verbose from debug BUG=28380215 TEST=compile Change-Id: Id633f41c5eeb375e3ef11aad718db9ae1fbd3c66 Signed-off-by: Sreenath Sharma <sreenath.sharma@broadcom.com>
-rw-r--r--bcmdhd/wifi_hal/gscan.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/bcmdhd/wifi_hal/gscan.cpp b/bcmdhd/wifi_hal/gscan.cpp
index 1dc5ec5..7898a3e 100644
--- a/bcmdhd/wifi_hal/gscan.cpp
+++ b/bcmdhd/wifi_hal/gscan.cpp
@@ -769,7 +769,7 @@ int wifi_handle_full_scan_event(
if(handler.on_full_scan_result)
handler.on_full_scan_result(id, full_scan_result, drv_res->scan_ch_bucket);
- ALOGD("Full scan result: %-32s %02x:%02x:%02x:%02x:%02x:%02x %d %d %lld %lld %lld %x %d\n",
+ ALOGV("Full scan result: %-32s %02x:%02x:%02x:%02x:%02x:%02x %d %d %lld %lld %lld %x %d\n",
fixed->ssid, fixed->bssid[0], fixed->bssid[1], fixed->bssid[2], fixed->bssid[3],
fixed->bssid[4], fixed->bssid[5], fixed->rssi, fixed->channel, fixed->ts,
fixed->rtt, fixed->rtt_sd, drv_res->scan_ch_bucket, drv_res->ie_length);