summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBen Fennema <fennema@google.com>2017-06-21 14:12:41 -0700
committerBen Fennema <fennema@google.com>2017-06-28 00:07:33 +0000
commit219e9740b9dc6f52bca66d9c8ee174efedc6c2e3 (patch)
treef1b81ce4a9c677c6e3de7b2b46f1caf2966609d1
parent0d33b27fbded1d4669ed281fc5050607bcc0432e (diff)
downloadcontexthub-219e9740b9dc6f52bca66d9c8ee174efedc6c2e3.tar.gz
sensorhal: add support for LOG_VERBOSE
Test: build Change-Id: I1ea56912ba27708607e1f2afacfec4fabf430ef9 Signed-off-by: Ben Fennema <fennema@google.com>
-rw-r--r--sensorhal/hubconnection.cpp3
1 files changed, 3 insertions, 0 deletions
diff --git a/sensorhal/hubconnection.cpp b/sensorhal/hubconnection.cpp
index 1aaaf8b5..42366c47 100644
--- a/sensorhal/hubconnection.cpp
+++ b/sensorhal/hubconnection.cpp
@@ -1060,6 +1060,9 @@ void HubConnection::postOsLog(uint8_t *buf, ssize_t len)
case 'D':
ALOGD("osLog: %s", &buf[5]);
break;
+ case 'V':
+ ALOGV("osLog: %s", &buf[5]);
+ break;
default:
break;
}