OSDN Git Service

Shut up a noisy log from HAL
authorVinit Deshpande <vinitd@google.com>
Wed, 3 Jun 2015 22:41:49 +0000 (15:41 -0700)
committerVinit Deshpande <vinitd@google.com>
Wed, 3 Jun 2015 22:48:16 +0000 (15:48 -0700)
Bug: 20416721

Change-Id: I2cc1b4404952365e31c2dc705374d30c59930ef9

bcmdhd/wifi_hal/wifi_hal.cpp

index d2e0c34..03bcc4b 100644 (file)
@@ -344,7 +344,7 @@ void wifi_event_loop(wifi_handle handle)
             ALOGE("Remote side hung up");
             break;
         } else if (pfd[0].revents & POLLIN) {
-            ALOGI("Found some events!!!");
+            // ALOGI("Found some events!!!");
             internal_pollin_handler(handle);
         } else if (pfd[1].revents & POLLIN) {
             ALOGI("Got a signal to exit!!!");
@@ -368,7 +368,7 @@ static int internal_no_seq_check(struct nl_msg *msg, void *arg)
 
 static int internal_valid_message_handler(nl_msg *msg, void *arg)
 {
-    ALOGI("got an event");
+    // ALOGI("got an event");
 
     wifi_handle handle = (wifi_handle)arg;
     hal_info *info = getHalInfo(handle);