summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAhmad Kholaif <akholaif@codeaurora.org>2014-10-24 15:47:47 -0700
committerAmarnath Hullur Subramanyam <amarnath@codeaurora.org>2014-10-28 12:42:26 -0700
commitf55af90df8c31a641c9955f072cfc9fda2e6305e (patch)
treee78d0c7c110c86e18959376a8233a012419b849f
parentd9fd2949c68833247001d37662b6a48d162c843c (diff)
downloadandroid_hardware_qcom_wlan-f55af90df8c31a641c9955f072cfc9fda2e6305e.tar.gz
android_hardware_qcom_wlan-f55af90df8c31a641c9955f072cfc9fda2e6305e.tar.bz2
android_hardware_qcom_wlan-f55af90df8c31a641c9955f072cfc9fda2e6305e.zip
Wi-Fi HAL: Avoid excess Wi-Fi HAL logging
In WifiCommand::response_handler(), don't call Wifievent::log() which is contributing to an excess Wi-Fi HAL logging. Change-Id: If9e183916400ac34678257aea3bc8f190e246f1e CRs-Fixed: 745677
-rw-r--r--qcwcn/wifi_hal/cpp_bindings.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/qcwcn/wifi_hal/cpp_bindings.cpp b/qcwcn/wifi_hal/cpp_bindings.cpp
index 6f936ed..ac7b1e0 100644
--- a/qcwcn/wifi_hal/cpp_bindings.cpp
+++ b/qcwcn/wifi_hal/cpp_bindings.cpp
@@ -696,7 +696,7 @@ int WifiCommand::response_handler(struct nl_msg *msg, void *arg) {
ALOGE("Failed to parse reply message = %d", res);
return NL_SKIP;
} else {
- reply.log();
+ // reply.log(); /* Don't call log() to avoid excess WiFi HAL logging */
return cmd->handleResponse(reply);
}
}