summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTreeHugger Robot <treehugger-gerrit@google.com>2017-06-27 23:57:09 +0000
committerAndroid (Google) Code Review <android-gerrit@google.com>2017-06-27 23:57:11 +0000
commit0b4f2b7ed580118dcbb8e0081c271c0c8b267ac9 (patch)
treeb79ac8b0947b2925786c47763fd0f8d8966f22e0
parent3f94eb74f8a10a4b2f50807e8e0fc62318d468ec (diff)
parent6e8960e0ca1fb6e9168d957c1018594afacbdd55 (diff)
downloadcontexthub-0b4f2b7ed580118dcbb8e0081c271c0c8b267ac9.tar.gz
Merge "Enable Nanohub INFO and DEBUG logs" into oc-dr1-dev
-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;