12345678910111213141516171819202122232425262728293031323334 |
- #define LOG_TAG "FMQ"
- #include <android-base/logging.h>
- namespace android {
- namespace hardware {
- namespace details {
- void check(bool exp) {
- CHECK(exp);
- }
- void logError(const std::string &message) {
- LOG(ERROR) << message;
- }
- }
- }
- }
|