summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorandroid-build-team Robot <android-build-team-robot@google.com>2017-06-28 07:31:25 +0000
committerandroid-build-team Robot <android-build-team-robot@google.com>2017-06-28 07:31:25 +0000
commit4839e27bc41bd786a6eaa0b1feb9deabab34f8f2 (patch)
treeb79ac8b0947b2925786c47763fd0f8d8966f22e0
parent9e0db379fc41193cd08d3c06c847e50fb064eb9b (diff)
parent0b4f2b7ed580118dcbb8e0081c271c0c8b267ac9 (diff)
downloadcontexthub-4839e27bc41bd786a6eaa0b1feb9deabab34f8f2.tar.gz
release-request-7baf6562-f0b7-48e4-8024-f8ee270ffe93-for-git_oc-dr1-release-4140679 snap-temp-L09900000078275654
Change-Id: I5460203ffd711c08a8026ec998e4bd6a340c8a8a
-rw-r--r--sensorhal/hubconnection.cpp7
1 files changed, 2 insertions, 5 deletions
diff --git a/sensorhal/hubconnection.cpp b/sensorhal/hubconnection.cpp
index bfae55dc..236a2359 100644
--- a/sensorhal/hubconnection.cpp
+++ b/sensorhal/hubconnection.cpp
@@ -15,7 +15,6 @@
*/
#define LOG_TAG "nanohub"
-#define LOG_NDEBUG 1
#include "hubconnection.h"
@@ -951,12 +950,10 @@ void HubConnection::postOsLog(uint8_t *buf, ssize_t len)
ALOGW("osLog: %s", &buf[5]);
break;
case 'I':
- // The other side of this is too chatty, reducing the priority to VERBOSE
- ALOGV("osLog: %s", &buf[5]);
+ ALOGI("osLog: %s", &buf[5]);
break;
case 'D':
- // The other side of this is too chatty, reducing the priority to VERBOSE
- ALOGV("osLog: %s", &buf[5]);
+ ALOGD("osLog: %s", &buf[5]);
break;
default:
break;