diff --git a/hidl/sensors/Sensors.cpp b/hidl/sensors/Sensors.cpp index d4e84b34..dc54bb5e 100644 --- a/hidl/sensors/Sensors.cpp +++ b/hidl/sensors/Sensors.cpp @@ -14,6 +14,8 @@ * limitations under the License. */ +//#define VERBOSE + #include "Sensors.h" #include #include "multihal.h" @@ -139,6 +141,15 @@ Return Sensors::getSensorsList(getSensorsList_cb _hidl_cb) { dst->typeAsString = SENSOR_STRING_TYPE_PROXIMITY; dst->maxRange = 1; } + +#ifdef VERBOSE + LOG(INFO) << "SENSOR NAME: " << dst->name; + LOG(INFO) << " VENDOR: " << dst->name; + LOG(INFO) << " TYPE: " << (uint32_t)dst->type; + LOG(INFO) << " TYPE_AS_STRING: " << dst->typeAsString; + LOG(INFO) << " FLAGS: " << std::hex << dst->flags; + LOG(INFO) << ""; +#endif } _hidl_cb(out);