Enable Nanohub INFO and DEBUG logs

Bug: 62867477
Test: Compile bullhead-userdebug, flash, see logs
Change-Id: I336f8f5ce6de93d854ebd5c979b1600d51d9a9a9
diff --git a/sensorhal/hubconnection.cpp b/sensorhal/hubconnection.cpp
index bfae55d..236a235 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 @@
         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;