Fix incorrect error log in sensors hidraw daemon

There is no error when this log is printed.

Bug: 298450041
Test: None
Change-Id: I63cecb051e24202b7a5d1ede764c7ba8baab65ff
This commit is contained in:
Arthur Ishiguro 2024-02-08 15:50:51 +00:00
parent b58d46a3a7
commit cceba1a03e

View file

@ -59,7 +59,7 @@ BaseSensorVector HidRawSensorDaemon::createSensor(const std::string &deviceKey)
ALOGE("failed to create HidRawSensorDevice object");
}
ALOGE("return %zu sensors", ret.size());
ALOGI("return %zu sensors", ret.size());
return ret;
}