summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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;