aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSan Mehat <san@google.com>2009-06-16 12:01:24 -0700
committerSan Mehat <san@google.com>2009-06-16 12:01:24 -0700
commit052403ebbe0c5ee37bd31c882325238f92110baa (patch)
tree13d6a70684bf0cd4e1620b73bd2eeabb7264e146
parent891cb2c13505985532acb81d759841d86df15004 (diff)
downloadsystem_core-052403ebbe0c5ee37bd31c882325238f92110baa.tar.gz
system_core-052403ebbe0c5ee37bd31c882325238f92110baa.tar.bz2
system_core-052403ebbe0c5ee37bd31c882325238f92110baa.zip
nexus: Less verbosity in TiwlanEventListener for now
Signed-off-by: San Mehat <san@google.com>
-rw-r--r--nexus/TiwlanEventListener.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/nexus/TiwlanEventListener.cpp b/nexus/TiwlanEventListener.cpp
index 76e6ec11..15e69301 100644
--- a/nexus/TiwlanEventListener.cpp
+++ b/nexus/TiwlanEventListener.cpp
@@ -45,13 +45,13 @@ bool TiwlanEventListener::onDataAvailable(SocketClient *cli) {
if (data->event_type == IPC_EVENT_LINK_SPEED) {
uint32_t *spd = (uint32_t *) data->buffer;
*spd /= 2;
- LOGD("Link speed = %u MB/s", *spd);
+// LOGD("Link speed = %u MB/s", *spd);
} else if (data->event_type == IPC_EVENT_LOW_SNR) {
- LOGD("Low signal/noise ratio");
+ LOGW("Low signal/noise ratio");
} else if (data->event_type == IPC_EVENT_LOW_RSSI) {
- LOGD("Low RSSI");
+ LOGW("Low RSSI");
} else {
- LOGD("Dropping unhandled driver event %d", data->event_type);
+// LOGD("Dropping unhandled driver event %d", data->event_type);
}
// TODO: Tell WifiController about the event